Click or drag to resize

OdeGearBDF(Double, Double, Vector, FuncDouble, Vector, Vector, Options) Method

Implementation of Gear's BDF method with dynamically changed step size and order. Order changes between 1 and 3.

Namespace: Altaxo.Calc.Ode.Obsolete
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static IEnumerable<SolutionPoint> GearBDF(
	double tstart,
	double tfinal,
	Vector x0,
	Func<double, Vector, Vector> f,
	Options opts
)

Parameters

tstart  Double
Initial time point
tfinal  Double
Final time
x0  Vector
Initial phase vector
f  FuncDouble, Vector, Vector
Right parts of the system
opts  Options
Options for accuracy control and initial step size

Return Value

IEnumerableSolutionPoint
Sequence of infinite number of solution points.
See Also