Accord.Math.RelativeConvergence.Clear C# (CSharp) 메소드

Clear() 공개 메소드

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