Construct a DoubleEigDecomp instance for the given matrix.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public DoubleEigDecomp(
	DoubleMatrix A
)
Visual Basic (Declaration)
Public Sub New ( _
	A As DoubleMatrix _
)
Visual C++
public:
DoubleEigDecomp(
	DoubleMatrix^ A
)

Parameters

A
Type: CenterSpace.NMath.Core..::.DoubleMatrix
A square matrix.

Remarks

All eigenvalues and right and left eigenvectors are computed after preliminary balancing.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MatrixNotSquareException Thrown if the matrix A is not square.

See Also