C# 클래스 YAMP.Numerics.Euler

Represents the Euler algorithm for computing ODEs.
상속: ODEBase
파일 보기 프로젝트 열기: FlorianRappl/YAMP

공개 메소드들

메소드 설명
Euler ( Func f, double begin, double end, double y0, int pointsNum ) : System

Default constructor

보호된 메소드들

메소드 설명
Calculate ( ) : void

Computes the result.

메소드 상세

Calculate() 보호된 메소드

Computes the result.
protected Calculate ( ) : void
리턴 void

Euler() 공개 메소드

Default constructor
public Euler ( Func f, double begin, double end, double y0, int pointsNum ) : System
f Func Function to be solved delegate
begin double Interval start point value
end double Interval end point value
y0 double Starting condition
pointsNum int Points number
리턴 System