Accord.Math.RelativeConvergence.Clear C# (CSharp) Méthode

Clear() public méthode

Resets this instance, reverting all iteration statistics statistics (number of iterations, last error) back to zero.
public Clear ( ) : void
Résultat void
        public void Clear()
        {
            CurrentIteration = 0;
            NewValue = 0;
            OldValue = 0;
            checks = 0;
        }
    }