Class SmoothingPolynomialBicubicSplineInterpolator

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

@Deprecated public class SmoothingPolynomialBicubicSplineInterpolator extends BicubicSplineInterpolator
Deprecated.
To be removed in 4.0 (see MATH-1166).
Generates a bicubic interpolation function. Prior to generating the interpolating function, the input is smoothed using polynomial fitting.
Since:
2.2
  • Constructor Details

    • SmoothingPolynomialBicubicSplineInterpolator

      public SmoothingPolynomialBicubicSplineInterpolator()
      Deprecated.
      Default constructor. The degree of the fitting polynomials is set to 3.
    • SmoothingPolynomialBicubicSplineInterpolator

      public SmoothingPolynomialBicubicSplineInterpolator(int degree) throws NotPositiveException
      Deprecated.
      Parameters:
      degree - Degree of the polynomial fitting functions.
      Throws:
      NotPositiveException - if degree is not positive
    • SmoothingPolynomialBicubicSplineInterpolator

      public SmoothingPolynomialBicubicSplineInterpolator(int xDegree, int yDegree) throws NotPositiveException
      Deprecated.
      Parameters:
      xDegree - Degree of the polynomial fitting functions along the x-dimension.
      yDegree - Degree of the polynomial fitting functions along the y-dimension.
      Throws:
      NotPositiveException - if degrees are not positive
  • Method Details