C# Класс Accord.Math.Optimization.OptimizationProgressEventArgs

Optimization progress event arguments.
Наследование: System.EventArgs
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
OptimizationProgressEventArgs ( int iteration, int evaluations, double gradient, double gnorm, double solution, double xnorm, double value, double stp, bool finished ) : System

Initializes a new instance of the OptimizationProgressEventArgs class.

Описание методов

OptimizationProgressEventArgs() публичный Метод

Initializes a new instance of the OptimizationProgressEventArgs class.
public OptimizationProgressEventArgs ( int iteration, int evaluations, double gradient, double gnorm, double solution, double xnorm, double value, double stp, bool finished ) : System
iteration int The current iteration of the optimization method.
evaluations int The number of function evaluations performed.
gradient double The current gradient of the function.
gnorm double The norm of the current gradient
solution double The current solution parameters.
xnorm double The norm of the current parameter vector.
value double The value of the function evaluated at the current solution.
stp double The current step size.
finished bool True if the method is about to terminate, false otherwise.
Результат System