C# Class YAMP.Numerics.NevilleInterpolator

The Neville polynom interpolation algorithm.
Inheritance: Interpolation
Mostra file Open project: FlorianRappl/YAMP

Public Methods

Method 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 method

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.
return double

NevilleInterpolator() public method

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