Class DividedDifferenceInterpolator

java.lang.Object
org.hipparchus.analysis.interpolation.DividedDifferenceInterpolator
All Implemented Interfaces:
Serializable, UnivariateInterpolator

public class DividedDifferenceInterpolator extends Object implements UnivariateInterpolator, Serializable
Implements the Divided Difference Algorithm for interpolation of real univariate functions. For reference, see Introduction to Numerical Analysis, ISBN 038795452X, chapter 2.

The actual code of Neville's evaluation is in PolynomialFunctionLagrangeForm, this class provides an easy-to-use interface to it.

See Also:
  • Constructor Details

    • DividedDifferenceInterpolator

      public DividedDifferenceInterpolator()
      Empty constructor.

      This constructor is not strictly necessary, but it prevents spurious javadoc warnings with JDK 18 and later.

      Since:
      3.0
  • Method Details