Thursday, October 2, 2025
HomeLanguagesPython | Numpy np.hermepow() method

Python | Numpy np.hermepow() method

With the help of np.hermepow() method, we can get the raise to a power of hermiteE series by using np.hermepow() method.

Syntax : np.hermepow(series, power)
Return : Return the powered hermiteE series.

Example #1 :
In this example we can see that by using np.hermepow() method, we are able to get the raise to a power of hermiteE series by using this method.




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


Output :

[119. 172. 382. 164. 169. 24. 16.]

Example #2 :




# import numpy and hermepow
import numpy as np
from numpy.polynomial.hermite_e import hermepow
  
series = np.array([11, 22, 33, 44])
  
# using np.hermepow() method
gfg = hermepow(series, 3)
  
print(gfg)


Output :

[8905721. 41678934. 43080477. 65016688. 26261961.
22847946. 4316433. 2571492. 191664. 85184.]

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

Most Popular

Dominic
32331 POSTS0 COMMENTS
Milvus
85 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11867 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11927 POSTS0 COMMENTS
Shaida Kate Naidoo
6818 POSTS0 COMMENTS
Ted Musemwa
7080 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6776 POSTS0 COMMENTS