Click or drag to resize
DigitalRuneOdeIntegratorDFirstOrderDerivative 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<VectorD, double, VectorD> FirstOrderDerivative { get; }

Property Value

Type: FuncVectorD, Double, VectorD
The 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