| OdeIntegratorF Constructor |
Namespace: DigitalRune.Mathematics.AnalysisAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax protected OdeIntegratorF(
Func<VectorF, float, VectorF> firstOrderDerivative
)
Protected Sub New (
firstOrderDerivative As Func(Of VectorF, Single, VectorF)
)
protected:
OdeIntegratorF(
Func<VectorF^, float, VectorF^>^ firstOrderDerivative
)
new :
firstOrderDerivative : Func<VectorF, float32, VectorF> -> OdeIntegratorF
Parameters
- firstOrderDerivative
- Type: SystemFuncVectorF, Single, VectorF
The function f(x, t) that computes the first order derivative of the vector x
(see FirstOrderDerivative).
Exceptions See Also