Specifies the type of a function that defines a system of ordinary differential equations.
Namespace:
Extreme.Mathematics.Calculus.OrdinaryDifferentialEquations
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public delegate Vector<double> DifferentialFunction(
double t,
Vector<double> y,
Vector<double> yPrime
)
Public Delegate Function DifferentialFunction (
t As Double,
y As Vector(Of Double),
yPrime As Vector(Of Double)
) As Vector(Of Double)
public delegate Vector<double>^ DifferentialFunction(
double t,
Vector<double>^ y,
Vector<double>^ yPrime
)
type DifferentialFunction =
delegate of
t : float *
y : Vector<float> *
yPrime : Vector<float> -> Vector<float>
Parameters
- t
- Type: SystemDouble
The time value. - y
- Type: Extreme.MathematicsVectorDouble
The current value. - yPrime
- Type: Extreme.MathematicsVectorDouble
On exit, the current value of the derivative of the solution.
Return Value
Type:
VectorDoubleThe value of
yPrime.
Reference