How to import special.hermite from scipy?

441 Views Asked by At

I'm looking to import a hermite polynomial. When I check the documentation on the scipy website it's available. However, when I try to import it there is no module found

1

There are 1 best solutions below

0
On BEST ANSWER
import scipy.special
p = scipy.special.hermite(63)

should work.