vote up 1 vote down star

Hi, All,

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.

Thanks very much for your help!

flag

1 Answer

vote up 2 vote down

Try:

>>> import numpy
>>> M=[[1, 2], [3, 4]]
>>> numpy.linalg.det(M)
-2.0

[http://www.scipy.org/doc/numpy_api_docs/numpy.linalg.linalg.html#det]

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.