Computes all the eigenvalues and eigenvectors for the given square Hermitian matrix.

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

Syntax

C#
public void Factor(
	FloatComplexMatrix A
)
Visual Basic (Declaration)
Public Sub Factor ( _
	A As FloatComplexMatrix _
)
Visual C++
public:
void Factor(
	FloatComplexMatrix^ A
)

Parameters

A
Type: CenterSpace.NMath.Core..::.FloatComplexMatrix
A square Hermitian matrix.

Remarks

All eigenvalues and eigenvectors are computed.

Exceptions

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

See Also