C# 클래스 YAMP.Numerics.NevilleInterpolator

The Neville polynom interpolation algorithm.
상속: Interpolation
파일 보기 프로젝트 열기: FlorianRappl/YAMP

공개 메소드들

메소드 설명
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