Class NevilleInterpolator

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

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

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

See Also: