C# Класс Artemis.Engine.Maths.ODESolver

A solver for an ODE of the form F(x, y) = y'. This uses the standard Runge-Kutta method.
Показать файл Открыть проект

Открытые методы

Метод Описание
GetNext ( ) : double

Calculate the next Y value in the approximation.

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

Описание методов

GetNext() публичный Метод

Calculate the next Y value in the approximation.
public GetNext ( ) : double
Результат double

ODESolver() публичный Метод

public ODESolver ( Func f, double stepSize, double initialX, double initialY ) : System
f Func
stepSize double
initialX double
initialY double
Результат System