| ExplicitEulerIntegratorF Constructor |
Namespace: DigitalRune.Mathematics.AnalysisAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public ExplicitEulerIntegratorF(
Func<VectorF, float, VectorF> firstOrderDerivative
)
Public Sub New (
firstOrderDerivative As Func(Of VectorF, Single, VectorF)
)
public:
ExplicitEulerIntegratorF(
Func<VectorF^, float, VectorF^>^ firstOrderDerivative
)
new :
firstOrderDerivative : Func<VectorF, float32, VectorF> -> ExplicitEulerIntegratorF
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