% DET DET Determinant of a Matrix % % Usage % % Calculates the determinant of a matrix. Note that for all but % very small problems, the determinant is not particularly useful. % The condition number cond gives a more reasonable estimate as % to the suitability of a matrix for inversion than comparing det(A) % to zero. In any case, the syntax for its use is % % y = det(A) % % where A is a square matrix. function y = det(A) if (~isnumeric(A)) error('Argument to det must be numeric'); end if (ndims(A) ~= 2) error('argument to det must be 2D matrix'); end if (size(A,1) ~= size(A,2)) error('argument to det must be square'); end N = size(A,1); [L,U,P] = lu(A); o = (1:N)'; p = P*o; exchange_count = det_exchange_count(p); y = prod(diag(U)); if (mod(exchange_count,2) ~= 0) y = -y; end function exchange_count = det_exchange_count(pivot) exchange_count = 0; for i=1:numel(pivot) if (pivot(i) ~= i) k = find(pivot == i); p = pivot(i); pivot(i) = i; pivot(k) = p; exchange_count = exchange_count + 1; end end