Open In App

Python | Numpy np.hermepow() method

Last Updated : 11 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
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. Python3 1=1
# 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 : Python3 1=1
# 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.]

Next Article

Similar Reads