C# Class NSoft.NFramework.Numerics.InterpolatorBase

보간을 수행하는 기본 Class
Inheritance: IInterpolator
Datei anzeigen Open project: debop/NFramework

Protected Properties

Property Type Description
IsDebugEnabled bool
log NLog.Logger

Public Methods

Method Description
CheckSameLength ( double x, double y ) : void

두 배열이 같은 길이를 가졌는지 검사한다.

Interpolate ( double x, double y, double t ) : double

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

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

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

Method Details

CheckSameLength() public static method

두 배열이 같은 길이를 가졌는지 검사한다.
public static CheckSameLength ( double x, double y ) : void
x double
y double
return void

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

Interpolate() public abstract method

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

Property Details

IsDebugEnabled protected_oe static_oe property

protected static bool IsDebugEnabled
return bool

log protected_oe static_oe property

protected static NLog.Logger log
return NLog.Logger