| OdeIntegratorFFirstOrderDerivative Property |
Gets the function f(x, t) that computes the first order derivative.
Namespace: DigitalRune.Mathematics.AnalysisAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public Func<VectorF, float, VectorF> FirstOrderDerivative { get; }
Public ReadOnly Property FirstOrderDerivative As Func(Of VectorF, Single, VectorF)
Get
public:
property Func<VectorF^, float, VectorF^>^ FirstOrderDerivative {
Func<VectorF^, float, VectorF^>^ get ();
}
member FirstOrderDerivative : Func<VectorF, float32, VectorF> with get
Property Value
Type:
FuncVectorF,
Single,
VectorFThe function f(x, t) that computes the first order derivative.
Remarks
The function has the form VectorF Function(VectorF x, float time),
where x is the state vector for the given time. The function returns the first order
derivative of state x for the given time.
See Also