Interface MultivariateGridInterpolation
-
- All Known Implementing Classes:
MultiCubicSpline,MultiLinearInterpolation,RecursiveGridInterpolation
public interface MultivariateGridInterpolationInterpolation on a rectilinear multi-dimensional grid. This requirement is imposed by most higher-order methods. Other methods exist but their performance is generally inferior.- See Also:
- Wikipedia: Multivariate interpolation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RealScalarFunctioninterpolate(MultivariateGrid grid)Construct a real valued function from a grid of observations.
-
-
-
Method Detail
-
interpolate
RealScalarFunction interpolate(MultivariateGrid grid)
Construct a real valued function from a grid of observations.- Parameters:
grid- the grid of observations- Returns:
- the interpolated function
-
-