C# Class YAMP.Numerics.Euler

Represents the Euler algorithm for computing ODEs.
Inheritance: ODEBase
ファイルを表示 Open project: FlorianRappl/YAMP

Public Methods

Method Description
Euler ( Func f, double begin, double end, double y0, int pointsNum ) : System

Default constructor

Protected Methods

Method Description
Calculate ( ) : void

Computes the result.

Method Details

Calculate() protected method

Computes the result.
protected Calculate ( ) : void
return void

Euler() public method

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
return System