SpectralDecompositionGetEigenvalues(DoubleMatrix, Boolean) Method

Computes the eigenvalues of the specified symmetric real matrix.

Definition

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

Parameters

matrix  DoubleMatrix
The matrix containing the lower or upper triangular part of the matrix whose eigenvalues 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.

Return Value

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

Exceptions

ArgumentNullExceptionmatrix is null.
ArgumentExceptionmatrix is not square.

See Also