Class BicubicSplineInterpolator

java.lang.Object
org.apache.commons.math3.analysis.interpolation.BicubicSplineInterpolator
All Implemented Interfaces:
BivariateGridInterpolator
Direct Known Subclasses:
SmoothingPolynomialBicubicSplineInterpolator

@Deprecated public class BicubicSplineInterpolator extends Object implements BivariateGridInterpolator
Deprecated.
Generates a bicubic interpolating function. Due to numerical accuracy issues this should not be used.
Since:
2.2
  • Constructor Details

    • BicubicSplineInterpolator

      public BicubicSplineInterpolator()
      Deprecated.
      Default constructor. The argument initializeDerivatives is set to false.
    • BicubicSplineInterpolator

      public BicubicSplineInterpolator(boolean initializeDerivatives)
      Deprecated.
      Creates an interpolator.
      Parameters:
      initializeDerivatives - Whether to initialize the internal data needed for calling any of the methods that compute the partial derivatives of the function returned from the call to interpolate.
  • Method Details