Class 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
    • Field Detail

      • xDegree

        private final int xDegree
        Deprecated.
        Degree of the fitting polynomial.
      • yDegree

        private final int yDegree
        Deprecated.
        Degree of the fitting polynomial.
    • Constructor Detail

      • 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