C# Class YAMP.Numerics.RungeKutta

This is the Runge-Kutta Algorithm for solving ODEs.
Inheritance: ODEBase
ファイルを表示 Open project: FlorianRappl/YAMP

Public Methods

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

Default constructor

Protected Methods

Method Description
Calculate ( ) : void

Calculates the result.

Method Details

Calculate() protected method

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

RungeKutta() public method

Default constructor
public RungeKutta ( 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