Click or drag to resize

OdeFunction Delegate

Delegate defining the Ordinary Differential Equations (ODEs) dy(i)/dt = f(i) = f(i,t,y(1),y(2),...,y(N)).

Namespace: Altaxo.Calc.Ode.Obsolete
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public delegate void OdeFunction(
	double t,
	double[] y,
	double[] dydt
)

Parameters

t  Double
The independent variable.
y  Double
Array of size N containing the dependent variable values(y(1),y(2),...,y(N)).
dydt  Double
A vector of size N, f(i) = dy(i)/dt that define the ordinary differential equations system, where N is the number of differential equations.
See Also