Computes the determinant of a matrix using Laplace expansion. This is done using minor matrices as is shown below:
|A| = Sum{ i=1:k ; aij Cij }
Cij = (-1)i+j Mij
Where M_ij is the minor of matrix A formed by eliminating row i and column j from A.
This is significantly more computationally expensive than using LU decomposition, but its computation has the advantage being independent of the matrices value.
@see org.ejml.alg.dense.decomposition.lu.LUDecompositionAlt @author Peter Abeles
|
|