Interface Interpolation2D
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
BicubicInterpolation, BilinearInterpolation, CubicSplineInterpolation2D, KrigingInterpolation2D, RBFInterpolation2D, ShepardInterpolation2D
Interpolation of 2-dimensional data.
-
Method Summary
Modifier and TypeMethodDescriptiondoubleinterpolate(double x1, double x2) Interpolate the data at a given 2-dimensional point.
-
Method Details
-
interpolate
double interpolate(double x1, double x2) Interpolate the data at a given 2-dimensional point.- Parameters:
x1- the 1st dimension value.x2- the 2nd dimension value.- Returns:
- the interpolated function value.
-