Open In App

Python | Numpy np.hermemulx() method

Last Updated : 11 Dec, 2019
Improve
Improve
Like Article
Like
Save
Share
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.




# 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 :




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


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

Similar Reads