C# Class NSoft.NFramework.Numerics.LagrangeInterpolator

Lagrange 보간법
Inheritance: InterpolatorBase
显示文件 Open project: debop/NFramework

Public Methods

Method Description
Interpolate ( double x, double y, double t ) : double[]

(x,y) 값으로 (t, ?) 값을 찾는다

Method Details

Interpolate() public method

(x,y) 값으로 (t, ?) 값을 찾는다
public Interpolate ( double x, double y, double t ) : double[]
x double x 값
y double f(x)의 값
t double 보간을 수행할 위치
return double[]