EigenvalueDecomposition<T>.GetDeterminant Method

Calculates the determinant of the decomposed matrix.

DefinitionPermalink

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
public override T GetDeterminant()

Return ValuePermalink

T
The determinant of the matrix.

RemarksPermalink

A system of simultaneous linear equations has a unique solution if its determinant is not equal to zero.

Determinants are only defined for square matrices. If the matrix is not square, an exception of type DimensionMismatchException is thrown.

For an eigenvalue decomposition the magnitude of the determinant is the product of the eigenvalues.

ExceptionsPermalink

DimensionMismatchException

The matrix is not square.

See AlsoPermalink