Click or drag to resize

RungeKuttaFourthOrder(VectorDouble, Double, Double, Int32, FuncDouble, VectorDouble, VectorDouble) Method

Fourth Order Runge-Kutta to solve ODE SYSTEM

Namespace: Altaxo.Calc.OdeSolvers
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Vector<double>[] FourthOrder(
	Vector<double> y0,
	double start,
	double end,
	int N,
	Func<double, Vector<double>, Vector<double>> f
)

Parameters

y0  VectorDouble
initial vector
start  Double
start time
end  Double
end time
N  Int32
Size of output array(the larger, the finer)
f  FuncDouble, VectorDouble, VectorDouble
ode function

Return Value

VectorDouble
approximations
See Also