Class TricubicSplineInterpolator

  • All Implemented Interfaces:
    TrivariateGridInterpolator

    @Deprecated
    public class TricubicSplineInterpolator
    extends java.lang.Object
    implements TrivariateGridInterpolator
    Deprecated.
    To be removed in 4.0 (see MATH-1166).
    Generates a tricubic interpolating function.
    Since:
    2.2
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      TricubicSplineInterpolatingFunction interpolate​(double[] xval, double[] yval, double[] zval, double[][][] fval)
      Deprecated.
      Compute an interpolating function for the dataset.
      private int nextIndex​(int i, int max)
      Deprecated.
      Compute the next index of an array, clipping if necessary.
      private int previousIndex​(int i)
      Deprecated.
      Compute the previous index of an array, clipping if necessary.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • TricubicSplineInterpolator

        public TricubicSplineInterpolator()
        Deprecated.
    • Method Detail

      • nextIndex

        private int nextIndex​(int i,
                              int max)
        Deprecated.
        Compute the next index of an array, clipping if necessary. It is assumed (but not checked) that i is larger than or equal to 0.
        Parameters:
        i - Index
        max - Upper limit of the array
        Returns:
        the next index
      • previousIndex

        private int previousIndex​(int i)
        Deprecated.
        Compute the previous index of an array, clipping if necessary. It is assumed (but not checked) that i is smaller than the size of the array.
        Parameters:
        i - Index
        Returns:
        the previous index