Click or drag to resize

xBaseOdeGearsAndAdamsMoultonSolve(Double, Double, Double, Double) Method

Computes the solution of the differntial equations.

Namespace: Altaxo.Calc.Ode.Obsolete.DVode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public double[,] Solve(
	double[] y0,
	double t0,
	double deltaT,
	double tf
)

Parameters

y0  Double
A vector of size N containing the initial conditions. N is the number of differential equations.
t0  Double
The initial independent variable value.
deltaT  Double
The step for the interval of integration (t0, t0+deltaT, t0+2*deltaT,...,tf).
tf  Double
The final independent variable value.

Return Value

Double
A matrix that contains the solution of the differential equations [T, y1,..,yN]. The first column contains the time points and each row corresponds to the solution at a time returned in the corresponding row.
See Also