DifferentialFunction Delegate

Specifies the type of a function that defines a system of ordinary differential equations.

Definition

Namespace: Numerics.NET.Calculus.OrdinaryDifferentialEquations
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public delegate Vector<double> DifferentialFunction(
	double t,
	Vector<double> y,
	Vector<double> yPrime
)

Parameters

t  Double
The time value.
y  Vector<Double>
The current value.
yPrime  Vector<Double>
On exit, the current value of the derivative of the solution.

Return Value

Vector<Double>
The value of yPrime.

See Also