Issue with importing scipy.integrate or scipy.integrate.quad
This might be something really simple: I am using Python 2.6.5 and I am 开发者_Go百科unable to load any integration module in my working space. Everything is OK when I import scipy, but if I try to import scipy.integrate or scipy.integrate.quad I get an error message from python. Any clue?? Thanks.
Try from scipy import integrate
.
精彩评论