Computes an eigenvalue decomposition for the given square matrix.

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

Syntax

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

Parameters

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

Return Value

An eigenvalue decomposition computed according to the settings of this server.

Exceptions

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

See Also