.NET Matrix Library
Eigenvectors Property
See Also  Send Feedback



Gets the right eigenvectors matrix.

Syntax

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

Property Value

A CMatrix object having as columns the right eigenvectors.

Remarks

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