Gets the eigenvalues of the covariance/correlation matrix, though the calculation is actually performed using the singular values of the data matrix.

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

Syntax

C#
public FloatVector Eigenvalues { get; }
Visual Basic (Declaration)
Public ReadOnly Property Eigenvalues As FloatVector
Visual C++
public:
property FloatVector^ Eigenvalues {
	FloatVector^ get ();
}

Remarks

The eigenvalues of the covariance/correlation matrix are equal to the squares of the standard deviations of the principal components.

See Also