Click or drag to resize
Accord.NET (logo)

RelativeConvergence Properties

The RelativeConvergence type exposes the following members.

Properties
  NameDescription
Public propertyCurrentIteration
Gets the current iteration number.
Public propertyDelta
Gets the absolute difference between the NewValue and OldValue as as Math.Abs(OldValue - NewValue).
Public propertyHasConverged
Gets whether the algorithm has converged.
Public propertyIterations Obsolete.
Please use MaxIterations instead.
Public propertyMaxIterations
Gets or sets the maximum number of iterations performed by the iterative algorithm. Default is 100.
Public propertyNewValue
Gets or sets the watched value after the iteration.
Public propertyOldValue
Gets or sets the watched value before the iteration.
Public propertyRelativeDelta
Gets the relative difference between the NewValue and OldValue as Math.Abs(OldValue - NewValue) / Math.Abs(OldValue).
Public propertyStartValue
Gets the initial value for the NewValue and OldValue properties.
Public propertyTolerance
Gets or sets the maximum relative change in the watched value after an iteration of the algorithm used to detect convergence. Default is zero.
Top
See Also