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.
Afficher le fichier Open project: ArtemisEngine/Artemis-Engine

Méthodes publiques

Méthode 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 méthode

Calculate the next Y value in the approximation.
public GetNext ( ) : double
Résultat double

ODESolver() public méthode

public ODESolver ( Func f, double stepSize, double initialX, double initialY ) : System
f Func
stepSize double
initialX double
initialY double
Résultat System