Thursday, September 18, 2025
HomeLanguagesPython | Numpy np.hermpow() method

Python | Numpy np.hermpow() method

With the help of np.hermpow() method, we can get the power of hermite series by using np.hermpow() method.

Syntax : np.hermpow(series, pow)
Return : Return the coefficient of series after applying power.

Example #1 :
In this example we can see that by using np.hermpow() method, we are able to get the coefficient of series after powering of hermite series by using this method.




# import numpy and hermpow
import numpy as np
from numpy.polynomial.hermite import hermpow
  
series = np.array([1, 2, 3, 4, 5])
  
# using np.hermpow() method
gfg = hermpow(series, 2)
  
print(gfg)


Output :

[10449. 8308. 21970. 6228. 8003. 1004. 846. 40. 25.]

Example #2 :




# import numpy and hermpow
import numpy as np
from numpy.polynomial.hermite import hermpow
  
series = np.array([1, 2, 3])
  
# using np.hermpow() method
gfg = hermpow(series, 3)
  
print(gfg)


Output :

[2257. 2358. 3837. 908. 711. 54. 27.]

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

Most Popular

Dominic
32299 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6664 POSTS0 COMMENTS
Nicole Veronica
11837 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11895 POSTS0 COMMENTS
Shaida Kate Naidoo
6779 POSTS0 COMMENTS
Ted Musemwa
7054 POSTS0 COMMENTS
Thapelo Manthata
6738 POSTS0 COMMENTS
Umr Jansen
6744 POSTS0 COMMENTS