Namespaces

Types

Type NevillePolynomialInterpolation

Namespace MathNet.Numerics.Interpolation.Algorithms

Interfaces IInterpolation

Lagrange Polynomial Interpolation using Neville's Algorithm.

This algorithm supports differentiation, but doesn't support integration.

When working with equidistant or Chebyshev sample points it is recommended to use the barycentric algorithms specialized for these cases instead of this arbitrary Neville algorithm.

Methods

Public instance methods

void Initialize(IList<double> samplePoints, IList<double> sampleValues)

Initialize the interpolation method with the given sample pairs.
Parameters
IList<double> samplePoints Sample Points t
IList<double> sampleValues Sample Values x(t)