C# 클래스 Accord.Math.Optimization.OptimizationProgressEventArgs

Optimization progress event arguments.
상속: System.EventArgs
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
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