scipy.linalg.det

scipy.linalg.det(a, overwrite_a=False)

Compute the determinant of a matrix

Parameters :

a : array, shape (M, M)

Returns :

det : float or complex

Determinant of a

Notes

The determinant is computed via LU factorization, LAPACK routine z/dgetrf.

Previous topic

scipy.linalg.solve_triangular

Next topic

scipy.linalg.norm

This Page