Friday, September 19, 2025
HomeLanguagesPython | Numpy np.herm2poly method

Python | Numpy np.herm2poly method

With the help of np.herm2poly() method, we can get the polynomial from hermite series by using np.herm2poly() method.

Syntax : np.herm2poly(hermite series)
Return : Return the coefficient of polynomial.

Example #1 :
In this example we can see that by using np.herm2poly() method, we are able to get the coefficients of polynomial from hermite series using this method.




# import numpy and herm2poly
import numpy as np
from numpy.polynomial.hermite import herm2poly
  
x = np.array([0.1, 0.2, 0.3, 0.4, 0.5])
# using np.herm2poly() method
gfg = herm2poly(x)
  
print(gfg)


Output :

[5.5 -4.4 -22.8 3.2 8.]

Example #2 :




# import numpy and herm2poly
import numpy as np
from numpy.polynomial.hermite import herm2poly
  
x = np.array([-0.5, -0.4, -0.3, -0.2, -0.1, 0, 0.1, 0.2, 0.3, 0.4, 0.5])
# using np.herm2poly() method
gfg = herm2poly(x)
  
print(gfg)


Output :

[-14629.1 11761.6 147243.6 -31585.6 -197617.6 19084.8 79571.2
-3660.8 -11443.2 204.8 512.]

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32301 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6665 POSTS0 COMMENTS
Nicole Veronica
11840 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11898 POSTS0 COMMENTS
Shaida Kate Naidoo
6781 POSTS0 COMMENTS
Ted Musemwa
7056 POSTS0 COMMENTS
Thapelo Manthata
6739 POSTS0 COMMENTS
Umr Jansen
6744 POSTS0 COMMENTS