Namespaces

Types

Type PolynomialInterpolationAlgorithm

Namespace MathNet.Numerics.Interpolation

Interfaces IInterpolationAlgorithm

Methods

Properties

Public instance methods

bool Equals(object obj)

Parameters
return bool
object obj

double Extrapolate(double t)

Extrapolate at point t.
Parameters
return double
double t

int GetHashCode()

Parameters
return int

Type GetType()

Parameters
return Type

double Interpolate(double t)

Interpolate at point t.
Parameters
return double
double t

double Interpolate(double t, Double& error)

Parameters
return double
double t
Double& error

void Prepare(SampleList samples)

Precompute/optimize the algoritm for the given sample set.
Parameters
SampleList samples

string ToString()

Parameters
return string

Public properties

int EffectiveOrder get;

The interpolation order that is effectively used.
return int

int MaximumOrder get; set;

The maxium interpolation order.
return int

bool SupportErrorEstimation get;

True if the alorithm supports error estimation.
Always true for this algorithm.
return bool