Click or drag to resize

RungeKuttaSecondOrder(Double, Double, Double, Int32, FuncDouble, Double, Double) Method

Second Order Runge-Kutta method

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

Parameters

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

Return Value

Double
approximations
See Also