public static class Interpolator.Linear<F extends Field<F>> extends Object implements Interpolator<F,F>
This class represents a linear interpolator for field
instances (point and values from the same field).
Interpolator.Linear<F extends Field<F>>| Constructor and Description |
|---|
Linear() |
| Modifier and Type | Method and Description |
|---|---|
F |
interpolate(F point,
SortedMap<F,F> pointValues)
Estimates the value at the specified point.
|
public F interpolate(F point, SortedMap<F,F> pointValues)
Interpolatorinterpolate in interface Interpolator<F extends Field<F>,F extends Field<F>>point - the point for which the value is estimated.pointValues - the point-value entries.