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
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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