Wednesday, February 4, 2026
HomeLanguagesPython | Numpy np.hermesub() method

Python | Numpy np.hermesub() method

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

Syntax : np.hermesub(series1, series2)
Return : Return the subtraction of two hermiteE series.

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




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


Output :

[-9. -9. -9. -9.]

Example #2 :




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


Output :

[ 1. 11. 21. 31.]

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

Most Popular

Dominic
32479 POSTS0 COMMENTS
Milvus
125 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11980 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12066 POSTS0 COMMENTS
Shaida Kate Naidoo
6987 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6936 POSTS0 COMMENTS
Umr Jansen
6919 POSTS0 COMMENTS