Gets the eigenvalues of the matrix if the matrix is symmetric.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public double[] SymmetricEigenvalues { get; }
Visual Basic (Declaration)
Public ReadOnly Property SymmetricEigenvalues As Double()
Visual C++
public:
property array<double>^ SymmetricEigenvalues {
	array<double>^ get ();
}

Field Value

The eigenvalues of the matrix if the matrix is symmetric.

Remarks

The first eigenvalue corresponds to the first column vector of the SymmetricEigenvectors-matrix, the second eigenvalue corresponds to the second column vector of the SymmetricEigenvectors-matrix and the third eigenvalue corresponds to the third column vector of the SymmetricEigenvectors-matrix.

Exceptions

ExceptionCondition
System..::.InvalidOperationExceptionThe matrix is not symmetric.

See Also