Open In App

Python | Numpy np.hermdiv() method

Last Updated : 06 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
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. Python3 1=1
# 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 : Python3 1=1
# 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.]))

Next Article

Similar Reads