C# Class NSoft.NFramework.Numerics.Integration.IntegratorBase

적분을 수행하는 기본 Class
Inheritance: IIntegrator
Afficher le fichier Open project: debop/NFramework

Méthodes publiques

Méthode Description
Integrate ( double>.Func func, double a, double b ) : double

함수의 [a,b] 구간을 적분합니다.

Méthodes protégées

Méthode Description
GetSteps ( double a, double b, int steps = DefaultSteps ) : int

구간에 따라 Step 수를 조정한다.

Method Details

GetSteps() protected static méthode

구간에 따라 Step 수를 조정한다.
protected static GetSteps ( double a, double b, int steps = DefaultSteps ) : int
a double 하한
b double 상한
steps int 초기 구간 수
Résultat int

Integrate() public abstract méthode

함수의 [a,b] 구간을 적분합니다.
public abstract Integrate ( double>.Func func, double a, double b ) : double
func double>.Func 적분할 함수
a double 적분 시작 위치
b double 적분 끝 위치
Résultat double