Wednesday, June 10, 2026
HomeLanguagesPython | Numpy np.hermdiv() method

Python | Numpy np.hermdiv() method

With the help of np.hermdiv() method, we can get the division of two hermite series by using np.hermdiv() method.

Syntax : np.hermdiv(series1, series2)
Return : Return the coefficient of series after division.

Example #1 :
In this example we can see that by using np.hermdiv() method, we are able to get the coefficient of series after division of two hermite series by using this method.




# import numpy and hermdiv
import numpy as np
from numpy.polynomial.hermite import hermdiv
  
series1 = np.array([1, 2, 3, 4, 5])
series2 = np.array([6, 7, 8, 9, 10])
  
# using np.hermdiv() method
gfg = hermdiv(series1, series2)
  
print(gfg)


Output :

(array([0.5]), array([-2., -1.5, -1., -0.5]))

Example #2 :




# import numpy and hermdiv
import numpy as np
from numpy.polynomial.hermite import hermdiv
  
series1 = np.array([1, 2, 3])
series2 = np.array([1, 2, 3])
  
# using np.hermdiv() method
gfg = hermdiv(series1, series2)
  
print(gfg)


Output :

(array([1.]), array([0.]))

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

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7018 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS