Gets the eigenvectors 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 Matrix3d SymmetricEigenvectors { get; }
Visual Basic (Declaration)
Public ReadOnly Property SymmetricEigenvectors As Matrix3d
Visual C++
public:
property Matrix3d^ SymmetricEigenvectors {
	Matrix3d^ get ();
}

Field Value

A matrix column-wise containing the eigenvectors of the matrix if the matrix is symmetric.

Remarks

The first eigenvector (first column vector) corresponds to the first element in SymmetricEigenvalues, the second eigenvector (second column vector) corresponds to the second element in SymmetricEigenvalues and the third eigenvector (third column vector) corresponds to the third element in SymmetricEigenvalues.

Exceptions

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

See Also