Differential Function Delegate
Specifies the type of a function that defines a system of ordinary differential equations.
Definition
Namespace: Extreme.Mathematics.Calculus.OrdinaryDifferentialEquations
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
The value of yPrime.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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.