C# 클래스 Accord.Math.AbsoluteConvergence

Absolute convergence criteria.
This class can be used to track progress and convergence of methods which rely on the absolute change of a value.
상속: ISingleValueConvergence
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
AbsoluteConvergence ( ) : System

Initializes a new instance of the AbsoluteConvergence class.

AbsoluteConvergence ( int iterations, double tolerance ) : System

Initializes a new instance of the AbsoluteConvergence class.

Clear ( ) : void

Clears this instance.

메소드 상세

AbsoluteConvergence() 공개 메소드

Initializes a new instance of the AbsoluteConvergence class.
public AbsoluteConvergence ( ) : System
리턴 System

AbsoluteConvergence() 공개 메소드

Initializes a new instance of the AbsoluteConvergence class.
public AbsoluteConvergence ( int iterations, double tolerance ) : System
iterations int The maximum number of iterations which should be /// performed by the iterative algorithm. Setting to zero indicates there /// is no maximum number of iterations. Default is 0.
tolerance double The maximum change in the watched value /// after an iteration of the algorithm used to detect convergence. /// Default is 0.
리턴 System

Clear() 공개 메소드

Clears this instance.
public Clear ( ) : void
리턴 void