Friday, October 24, 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
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS