Click or drag to resize

SpectralDecompositionGetEigenvalues Method (DoubleMatrix, Boolean)

Computes the eigenvalues of the specified symmetric real matrix.

Namespace:  Novacta.Analytics.Advanced
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public static DoubleMatrix GetEigenvalues(
	DoubleMatrix matrix,
	bool lowerTriangularPart
)

Parameters

matrix
Type: Novacta.AnalyticsDoubleMatrix
The matrix containing the lower or upper triangular part of the matrix whose eigenvalues must be computed.
lowerTriangularPart
Type: SystemBoolean
true if matrix contains the lower triangular part of the matrix to be decomposed; false if matrix contains its upper triangular part.

Return Value

Type: DoubleMatrix
A column vector containing the eigenvalues of the decomposed matrix, in ascending order.
Exceptions
ExceptionCondition
ArgumentNullExceptionmatrix is null.
ArgumentExceptionmatrix is not square.
See Also