C# Класс YAMP.Numerics.NevilleInterpolator

The Neville polynom interpolation algorithm.
Наследование: Interpolation
Показать файл Открыть проект

Открытые методы

Метод Описание
ComputeValue ( double t ) : double

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

NevilleInterpolator ( MatrixValue vector ) : System

Creates a new instance.

Описание методов

ComputeValue() публичный Метод

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.
Результат double

NevilleInterpolator() публичный Метод

Creates a new instance.
public NevilleInterpolator ( MatrixValue vector ) : System
vector YAMP.MatrixValue The Nx2 vector with the sample values.
Результат System