Open In App

Python | Numpy np.hermint() method

Improve
Improve
Like Article
Like
Save
Share
Report

With the help of np.hermint() method, we can integrate hermite series by using np.hermint() method.

Syntax : np.hermint(series, m)
Return : Return the coefficient of integrated series.

Example #1 :
In this example we can see that by using np.hermint() method, we are able to get the integrated series coefficient of hermite series by using this method.




# import numpy and harmint
import numpy as np
from numpy.polynomial.hermite import hermint
  
series = np.array([2, 0.3, 4, 0.5, 6])
# using np.harmint() method
gfg = hermint(series, m = 1)
  
print(gfg)


Output :

[-0.6 1. 0.075 0.66666667 0.0625 0.6]

Example #2 :




# import numpy and harmint
import numpy as np
from numpy.polynomial.hermite import hermint
  
series = np.array([1, 2, 3, 4, 5])
# using np.harmint() method
gfg = hermint(series, m = 2)
  
print(gfg)


Output :

[4.5 -2.5 0.125 0.08333333 0.0625 0.05 0.04166667]


Last Updated : 11 Dec, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads