C# Class YAMP.Numerics.SplineInterpolation

Interpolation with the spline method.
Inheritance: Interpolation
Show file Open project: FlorianRappl/YAMP Class Usage Examples

Public Methods

Method Description
ComputeValue ( double x ) : double

Computes a specific interpolated value f(x).

SplineInterpolation ( MatrixValue samples ) : System

Creates a new instance.

Method Details

ComputeValue() public method

Computes a specific interpolated value f(x).
public ComputeValue ( double x ) : double
x double The value where to interpolate.
return double

SplineInterpolation() public method

Creates a new instance.
public SplineInterpolation ( MatrixValue samples ) : System
samples YAMP.MatrixValue The Nx2 matrix containing the sample data.
return System