Click or drag to resize

OdeIterationMethod Enumeration

Iteration method for implicit Ode method (Gear's, implicit Adam's, and so on).

Namespace: Altaxo.Calc.Ode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public enum OdeIterationMethod
Members
Member nameValueDescription
UseJacobian0Use 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.
DoNotUseJacobian1Set the jacobian matrix to zero. This will not allow Newton-Raphson iterations, that's why the iteration converges only slowly.
See Also