pythonscipypython-importphysicshermite

How to import special.hermite from scipy?


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


Solution

  • import scipy.special
    p = scipy.special.hermite(63)
    

    should work.