.NET Matrix Library
LeftEigenvector Property
See Also  Send Feedback



index
An index specifying the eigenvector to return.
Gets the specified left eigenvector.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property LeftEigenvector( _
   ByVal index As Integer _
) As CVector
Visual Basic (Usage)Copy Code
Dim instance As CEigen
Dim index As Integer
Dim value As CVector
 
value = instance.LeftEigenvector(index)
C# 
public CVector LeftEigenvector( 
   int index
) {get;}
C++/CLI 
public:
property CVector^ LeftEigenvector {
   CVector^ get(intindex);
}

Parameters

index
An index specifying the eigenvector to return.

Property Value

A CVector object that represents the specified left eigenvector.

Exceptions

ExceptionDescription
IndexOutOfBoundsExceptionThe specified index parameter is less than zero or greater than n-1 where n is the value returned by the Size property of this class.

Remarks

If the leftEigenvectors parameter of the CEigen class constructor is set to false, the left eigenvectors are not calculated and the Eigenvector 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