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

Last Updated : 11 Dec, 2019

With the help of **np.hermeint()** method, we can integrate hermiteE series by using np.hermeint() method.

Syntax : np.hermeint(series, m)

Return : Return the coefficient of integrated series.

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

import numpy as np

from numpy.polynomial.hermite_e import hermeint

series = np.array([ 2 , 0.3 , 4 , 0.5 , 6 ])

gfg = hermeint(series, m = 2 )

print (gfg)

Output :

[3. -0.225 1. 0.05 0.33333333 0.025 0.2]

Example #2 :

import numpy as np

from numpy.polynomial.hermite_e import hermeint

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

gfg = hermeint(series, m = 3 )

print (gfg)

Output :

[-0.75 2.25 -1. 0.16666667 0.08333333 0.05 0.03333333 0.02380952]

Similar Reads