OdeIterationMethod Enumeration |
Iteration method for implicit Ode method (Gear's, implicit Adam's, and so on).
Namespace: Altaxo.Calc.OdeAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public enum OdeIterationMethod
Members Member name | Value | Description |
---|
UseJacobian | 0 | Use a function to calculate the jacobian. This function has either to be provided by the user,
or, if the user does not provide such a function, an approximation by finite differences is used. |
DoNotUseJacobian | 1 | Set the jacobian matrix to zero. This will not allow Newton-Raphson iterations,
that's why the iteration converges only slowly. |
See Also