C# 클래스 Artemis.Engine.Maths.ODESolver

A solver for an ODE of the form F(x, y) = y'. This uses the standard Runge-Kutta method.
파일 보기 프로젝트 열기: ArtemisEngine/Artemis-Engine

공개 메소드들

메소드 설명
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