Click or drag to resize

AdamsBashforthFirstOrder Method

First Order AB method(same as Forward Euler)

Namespace: Altaxo.Calc.OdeSolvers
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double[] FirstOrder(
	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 model

Return Value

Double
approximation with size N
See Also