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



matrix
A CMatrix object representing the complex Hermitian matrix whose eigenvalues and right eigenvectors are to be computed.
Initializes a new instance of the CSymEigen class computing the eigenvalues and the eigenvectors of a complex Hermitian matrix.

Syntax

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

Parameters

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

Exceptions

ExceptionDescription
NotSquareMatrixExceptionmatrix parameter does not represent a square matrix.

Remarks

No check is made if matrix is actually Hermitian and only its lower triangular part is used in calculations.

Requirements

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

See Also

.NET Matrix Library