Can I get the matrix determinant by Numpy? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T03:30:06Z http://stackoverflow.com/feeds/question/462500 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/462500/can-i-get-the-matrix-determinant-by-numpy 1 Can I get the matrix determinant by Numpy? george 2009-01-20T18:32:16Z 2009-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#462514 2 Answer by Paul for Can I get the matrix determinant by Numpy? Paul 2009-01-20T18:35:26Z 2009-01-20T19:45:17Z <p>Try:</p> <pre><code>&gt;&gt;&gt; import numpy &gt;&gt;&gt; M=[[1, 2], [3, 4]] &gt;&gt;&gt; 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>