.NET Matrix Library
Eigenvector Property
See Also  Send Feedback



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

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Eigenvector( _
   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.Eigenvector(index)
C# 
public CVector Eigenvector( 
   int index
) {get;}
C++/CLI 
public:
property CVector^ Eigenvector {
   CVector^ get(intindex);
}

Parameters

index
An index specifying the eigenvector to return.

Property Value

A CVector object that represents the specified right 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 rightEigenvectors parameter of the CEigen class constructor is set to false, the right eigenvectors are not calculated and 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