ConvergenceMode Enumeration

Represents the ways an IterativeAlgorithm<T> can converge to its final value.

Definition

Namespace: Numerics.NET.Algorithms
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public enum ConvergenceMode

Members

Interval0 The algorithm produces a sequence of intervals of decreasing size.
Point1 The algorithm produces a sequence of values with error estimates.
Custom2 The method of convergence is determined by the inheriting class.

See Also