Can I get the matrix determinant by Numpy? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T03:30:06Zhttp://stackoverflow.com/feeds/question/462500http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/462500/can-i-get-the-matrix-determinant-by-numpy1Can I get the matrix determinant by Numpy?george2009-01-20T18:32:16Z2009-01-20T19:45:17Z
<p>Hi, All,</p>
<p>This confused me a lot. I read the manual of Numpy that there is function det(M) that can calculate the determinant. However, I can't find the det() in Numpy. By the way, I use Python 2.5. There should be no compatabile problem with Numpy.</p>
<p>Thanks very much for your help!</p>
http://stackoverflow.com/questions/462500/can-i-get-the-matrix-determinant-by-numpy/462514#4625142Answer by Paul for Can I get the matrix determinant by Numpy?Paul2009-01-20T18:35:26Z2009-01-20T19:45:17Z<p>Try:</p>
<pre><code>>>> import numpy
>>> M=[[1, 2], [3, 4]]
>>> numpy.linalg.det(M)
-2.0
</code></pre>
<p>[<a href="http://www.scipy.org/doc/numpy_api_docs/numpy.linalg.linalg.html#det" rel="nofollow">http://www.scipy.org/doc/numpy_api_docs/numpy.linalg.linalg.html#det</a>]</p>