.NET Matrix Library
CEigen Constructor(CMatrix)
See Also  Send Feedback



matrix
A CMatrix object representing the complex square matrix whose eigenvalues and right eigenvectors are to be computed.
Creates a new instance of the CEigen class, computing the eigenvalues and the right eigenvectors of a general square complex matrix, with preliminary matrix balancing.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal matrix As CMatrix _
)
Visual Basic (Usage)Copy Code
Dim matrix As CMatrix
 
Dim instance As New CEigen(matrix)
C# 
public CEigen( 
   CMatrix matrix
)
C++/CLI 
public:
CEigen( 
   CMatrix^ matrix
)

Parameters

matrix
A CMatrix object representing the complex square matrix whose eigenvalues and right eigenvectors are to be computed.

Exceptions

ExceptionDescription
NotSquareMatrixExceptionmatrix parameter does not represent a square matrix.

Remarks

Only the right eigenvectors are computed if this constructor is used; the LeftEigenvector, LeftEigenvectors properties will return 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