I want to compute the determinant of a matrix from its LUP decomposition in MATLAB. The determinant can be found from the formula:
P is a permutation matrix and S is the number of exchanges of rows needed to transform P into an identity matrix. How can I find S in the above formula in MATLAB? Does it have any pre-defined functions, etc.?
If you interpret
P
as an adjacency matrix, and the vectorcycles
contains the length of all cycles in the graph described byP
, thenS=sum(cycles) - length(cycles)
.Now all is left is to find the length of all the cycles, for which there are several functions on the File Exchange, like this one.
BTW:
[L, U, P] = lu(A)
, anddet(A) = det(inv(P))*det(L)*det(U)