SpectralDecompositionDecompose(ComplexMatrix, Boolean, ComplexMatrix) Method

Computes eigenvalues and eigenvectors of the specified Hermitian complex matrix.

Definition

Namespace: Novacta.Analytics.Advanced
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static DoubleMatrix Decompose(
	ComplexMatrix matrix,
	bool lowerTriangularPart,
	out ComplexMatrix eigenvectors
)

Parameters

matrix  ComplexMatrix
The matrix containing the lower or upper triangular part of the matrix whose spectral decomposition must be computed.
lowerTriangularPart  Boolean
true if matrix contains the lower triangular part of the matrix to be decomposed; false if matrix contains its upper triangular part.
eigenvectors  ComplexMatrix
A matrix whose columns represent the eigenvectors of the decomposed matrix.

Return Value

DoubleMatrix
A diagonal matrix containing the eigenvalues of the decomposed matrix, in ascending order.

Exceptions

ArgumentNullExceptionmatrix is null.
ArgumentExceptionmatrix is not square.

See Also