C# Class YAMP.Numerics.NewtonInterpolation

The Newton polynomial interpolation method.
Inheritance: Interpolation
Show file Open project: FlorianRappl/YAMP

Public Methods

Method Description
ComputeValue ( double t ) : double

Computes a value f(t) at t.

NewtonInterpolation ( MatrixValue vector ) : System

Creates a new instance.

Method Details

ComputeValue() public method

Computes a value f(t) at t.
public ComputeValue ( double t ) : double
t double The t value.
return double

NewtonInterpolation() public method

Creates a new instance.
public NewtonInterpolation ( MatrixValue vector ) : System
vector YAMP.MatrixValue The Nx2 vector with the samples.
return System