.NET Matrix Library
LeftEigenvectors Property
See Also  Send Feedback



Gets the left eigenvectors matrix.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property LeftEigenvectors As CMatrix
Visual Basic (Usage)Copy Code
Dim instance As CEigen
Dim value As CMatrix
 
value = instance.LeftEigenvectors
C# 
public CMatrix LeftEigenvectors {get;}
C++/CLI 
public:
property CMatrix^ LeftEigenvectors {
   CMatrix^ get();
}

Property Value

A CMatrix object having as columns the left eigenvectors.

Remarks

If the leftEigenvectors parameter of the CEigen class constructor is set to false, the left eigenvectors are not calculated and the LeftEigenvectors property returns a null reference (Nothing in Visual Basic).

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library