C# Class Nexus.NumericalAnalysis.Rk4OdeSolver

Solves an ODE using RK4
Inheritance: OdeSolver
Mostrar archivo Open project: tgjones/nexus

Public Methods

Method Description
Rk4OdeSolver ( int dimensions, CalculateDerivatives callback )
Solve ( float initial, float x, float h ) : float[]

Method Details

Rk4OdeSolver() public method

public Rk4OdeSolver ( int dimensions, CalculateDerivatives callback )
dimensions int
callback CalculateDerivatives

Solve() public method

public Solve ( float initial, float x, float h ) : float[]
initial float
x float
h float
return float[]