Open In App

Python | Numpy np.hermpow() method

Last Updated : 06 Dec, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

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.]


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads