Class BicubicInterpolatingFunction
java.lang.Object
org.hipparchus.analysis.interpolation.BicubicInterpolatingFunction
- All Implemented Interfaces:
BivariateFunction
Function that implements the
bicubic spline interpolation.
-
Constructor Summary
ConstructorsConstructorDescriptionBicubicInterpolatingFunction(double[] x, double[] y, double[][] f, double[][] dFdX, double[][] dFdY, double[][] d2FdXdY) Simple constructor. -
Method Summary
Modifier and TypeMethodDescriptionbooleanisValidPoint(double x, double y) Indicates whether a point is within the interpolation range.doublevalue(double x, double y) Compute the value for the function.
-
Constructor Details
-
BicubicInterpolatingFunction
public BicubicInterpolatingFunction(double[] x, double[] y, double[][] f, double[][] dFdX, double[][] dFdY, double[][] d2FdXdY) throws MathIllegalArgumentException Simple constructor.- Parameters:
x- Sample values of the x-coordinate, in increasing order.y- Sample values of the y-coordinate, in increasing order.f- Values of the function on every grid point.dFdX- Values of the partial derivative of function with respect to x on every grid point.dFdY- Values of the partial derivative of function with respect to y on every grid point.d2FdXdY- Values of the cross partial derivative of function on every grid point.- Throws:
MathIllegalArgumentException- if the various arrays do not contain the expected number of elements.MathIllegalArgumentException- ifxoryare not strictly increasing.MathIllegalArgumentException- if any of the arrays has zero length.
-
-
Method Details
-
value
Compute the value for the function.- Specified by:
valuein interfaceBivariateFunction- Parameters:
x- Abscissa for which the function value should be computed.y- Ordinate for which the function value should be computed.- Returns:
- the value.
- Throws:
MathIllegalArgumentException
-
isValidPoint
public boolean isValidPoint(double x, double y) Indicates whether a point is within the interpolation range.- Parameters:
x- First coordinate.y- Second coordinate.- Returns:
trueif (x, y) is a valid point.
-