Gets the matrix of left eigenvectors.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

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

Remarks

The ith column is a left eigenvector for the eigenvalue obtained as the ith element of the vector returned by the EigenValues property, which is the same as the eigenvalue returned by invoking the member function EigenValue(i).

See Also