Python | Numpy np.hermepow() method (original) (raw)

Last Updated : 11 Dec, 2019

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 as np

from numpy.polynomial.hermite_e import hermepow

series = np.array([ 1 , 2 , 3 , 4 ])

gfg = hermepow(series, 2 )

print (gfg)

Output :

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

Example #2 :

import numpy as np

from numpy.polynomial.hermite_e import hermepow

series = np.array([ 11 , 22 , 33 , 44 ])

gfg = hermepow(series, 3 )

print (gfg)

Output :

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

Similar Reads