| OdeIntegratorDFirstOrderDerivative 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<VectorD, double, VectorD> FirstOrderDerivative { get; }
Public ReadOnly Property FirstOrderDerivative As Func(Of VectorD, Double, VectorD)
Get
public:
property Func<VectorD^, double, VectorD^>^ FirstOrderDerivative {
Func<VectorD^, double, VectorD^>^ get ();
}
member FirstOrderDerivative : Func<VectorD, float, VectorD> with get
Property Value
Type:
FuncVectorD,
Double,
VectorDThe function f(x, t) that computes the first order derivative.
Remarks
The function has the form VectorD Function(VectorD x, double 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