Monday, October 6, 2025
HomeLanguagesPython | Numpy np.hermeadd() method

Python | Numpy np.hermeadd() method

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

Syntax : np.hermeadd(series1, series2)
Return : Return the addition of two hermiteE series.

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




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


Output :

[11. 13. 15. 17.]

Example #2 :




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


Output :

[21. 33. 45. 57.]

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

Most Popular

Dominic
32338 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6707 POSTS0 COMMENTS
Nicole Veronica
11871 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6825 POSTS0 COMMENTS
Ted Musemwa
7089 POSTS0 COMMENTS
Thapelo Manthata
6779 POSTS0 COMMENTS
Umr Jansen
6780 POSTS0 COMMENTS