Gets or sets the maximum number of iterations.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public int MaxIterations { get; set; }
Visual Basic (Declaration)
Public Property MaxIterations As Integer
Visual C++
public:
property int MaxIterations {
	int get ();
	void set (int value);
}

Remarks

During each iteration of the NIPALS algorithm the dominant eigenvalue of the matrix
CopyC#
(Xj'Yj)(Xj'yj)'
is computed using the power method. This property controls the maximum number of iterations to perform in computing the eigenvector.

See Also