Class PiecewiseBicubicSplineInterpolatingFunction

java.lang.Object
org.hipparchus.analysis.interpolation.PiecewiseBicubicSplineInterpolatingFunction
All Implemented Interfaces:
BivariateFunction, FieldBivariateFunction

public class PiecewiseBicubicSplineInterpolatingFunction extends Object implements BivariateFunction, FieldBivariateFunction
Function that implements the bicubic spline interpolation. This implementation currently uses AkimaSplineInterpolator as the underlying one-dimensional interpolator, which requires 5 sample points; insufficient data will raise an exception when the value method is called.
  • Constructor Details

  • Method Details

    • value

      public double value(double x, double y) throws MathIllegalArgumentException
      Compute the value for the function.
      Specified by:
      value in interface BivariateFunction
      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
    • value

      public <T extends CalculusFieldElement<T>> T value(T x, T y) throws MathIllegalArgumentException
      Compute the value for the function.
      Specified by:
      value in interface FieldBivariateFunction
      Type Parameters:
      T - type of the field elements
      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
      Since:
      1.5
    • 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:
      true if (x, y) is a valid point.