Click or drag to resize
DigitalRuneOdeIntegratorFFirstOrderDerivative Property
Gets the function f(x, t) that computes the first order derivative.

Namespace: DigitalRune.Mathematics.Analysis
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public Func<VectorF, float, VectorF> FirstOrderDerivative { get; }

Property Value

Type: FuncVectorF, Single, VectorF
The 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