Friday, December 12, 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
32444 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6813 POSTS0 COMMENTS
Nicole Veronica
11951 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12026 POSTS0 COMMENTS
Shaida Kate Naidoo
6945 POSTS0 COMMENTS
Ted Musemwa
7198 POSTS0 COMMENTS
Thapelo Manthata
6891 POSTS0 COMMENTS
Umr Jansen
6881 POSTS0 COMMENTS