Class ComplexDenseDeterminant
java.lang.Object
org.flag4j.linalg.ops.dense.complex.ComplexDenseDeterminant
This class contains methods for computing the determinant of a complex dense matrix.
-
Method Summary
Modifier and TypeMethodDescriptionstatic Complex128
Computes the determinant of a square matrix using the LU factorization.static Complex128
Computes the determinant of a square matrix using the LU factorization.
-
Method Details
-
det
Computes the determinant of a square matrix using the LU factorization.- Parameters:
A
- Matrix to compute the determinant of.- Returns:
- The determinant of the matrix.
- Throws:
LinearAlgebraException
- If matrix is not square.
-
detLU
Computes the determinant of a square matrix using the LU factorization.- Parameters:
A
- Matrix to compute the determinant of.- Returns:
- The determinant of the matrix.
- Throws:
LinearAlgebraException
- If matrix is not square.
-