C# Class YAMP.Numerics.NevilleInterpolator

The Neville polynom interpolation algorithm.
Inheritance: Interpolation
Afficher le fichier Open project: FlorianRappl/YAMP

Méthodes publiques

Méthode Description
ComputeValue ( double t ) : double

Interpolates the y value for a given x (t) value.

NevilleInterpolator ( MatrixValue vector ) : System

Creates a new instance.

Method Details

ComputeValue() public méthode

Interpolates the y value for a given x (t) value.
public ComputeValue ( double t ) : double
t double The x value for computing f(x) = y.
Résultat double

NevilleInterpolator() public méthode

Creates a new instance.
public NevilleInterpolator ( MatrixValue vector ) : System
vector YAMP.MatrixValue The Nx2 vector with the sample values.
Résultat System