Thursday, September 4, 2025
HomeLanguagesPython | Numpy np.hermemul() method

Python | Numpy np.hermemul() method

With the help of np.hermemul() method, we can get the multiplication of two hermiteE series by using np.hermemul() method.

Syntax : np.hermemul(series1, series2)
Return : Return the multiplication of two hermiteE series.

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




# import numpy and hermemul
import numpy as np
from numpy.polynomial.hermite_e import hermemul
  
series1 = np.array([1, 2, 3, 4])
series2 = np.array([10, 11, 12, 13])
  
# using np.hermemul() method
gfg = hermemul(series1, series2)
  
print(gfg)


Output :

[416. 667. 1354. 632. 574. 87. 52.]

Example #2 :




# import numpy and hermemul
import numpy as np
from numpy.polynomial.hermite_e import hermemul
  
series1 = np.array([11, 22, 33, 44])
series2 = np.array([10, 11, 12, 13])
  
# using np.hermemul() method
gfg = hermemul(series1, series2)
  
print(gfg)


Output :

[4576. 7337. 14894. 6952. 6314. 957. 572.]

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6632 POSTS0 COMMENTS
Nicole Veronica
11800 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11860 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6698 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS