C# Class Artemis.Engine.Maths.ODESolver

A solver for an ODE of the form F(x, y) = y'. This uses the standard Runge-Kutta method.
Datei anzeigen Open project: ArtemisEngine/Artemis-Engine

Public Methods

Method Description
GetNext ( ) : double

Calculate the next Y value in the approximation.

ODESolver ( Func f, double stepSize, double initialX, double initialY ) : System

Method Details

GetNext() public method

Calculate the next Y value in the approximation.
public GetNext ( ) : double
return double

ODESolver() public method

public ODESolver ( Func f, double stepSize, double initialX, double initialY ) : System
f Func
stepSize double
initialX double
initialY double
return System