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 importnumpy as np fromnumpy.polynomial.hermite_e importhermepow  Â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 importnumpy as np fromnumpy.polynomial.hermite_e importhermepow  Â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.]

 
                                    







