Open In App

Python | Numpy np.hermemulx() method

Last Updated : 11 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of np.hermemulx() method, we can get the multiplication of hermiteE series with independent variable x by using np.hermemulx() method.
Syntax : np.hermemulx(series) Return : Return the multiplication of hermiteE series with x.
Example #1 : In this example we can see that by using np.hermemulx() method, we are able to get the multiplication of hermiteE series with independent variable x by using this method. Python3 1=1
# import numpy and hermemulx
import numpy as np
from numpy.polynomial.hermite_e import hermemulx

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

# using np.hermemulx() method
gfg = hermemulx(series)

print(gfg)
Output :
[2. 7. 14. 3. 4.]
Example #2 : Python3 1=1
# import numpy and hermemulx
import numpy as np
from numpy.polynomial.hermite_e import hermemulx

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

# using np.hermemulx() method
gfg = hermemulx(series)

print(gfg)
Output :
[22. 77. 154. 33. 44.]

Next Article

Similar Reads