.NET Matrix Library
Eigen Constructor(Matrix)
See Also  Send comments on this topic


matrix
Matrix object representing the square real matrix whose eigenvalues and right eigenvectors are to be computed.
Creates a new instance of the Eigen class, computing the eigenvalues and the right eigenvectors of a general square real matrix, with preliminary matrix balancing.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal matrix As Matrix _
)
C# 
public Eigen( 
   Matrix matrix
)
C++/CLI 
public:
Eigen( 
   Matrix^ matrix
)

Parameters

matrix
Matrix object representing the square real 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

Platforms: Windows 7, Windows Vista, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows 2000

See Also

.NET Matrix Library Documentation