Python | Numpy np.hermdiv() method (original) (raw)

Last Updated : 06 Dec, 2019

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 as np

from numpy.polynomial.hermite import hermdiv

series1 = np.array([ 1 , 2 , 3 , 4 , 5 ])

series2 = np.array([ 6 , 7 , 8 , 9 , 10 ])

gfg = hermdiv(series1, series2)

print (gfg)

Output :

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

Example #2 :

import numpy as np

from numpy.polynomial.hermite import hermdiv

series1 = np.array([ 1 , 2 , 3 ])

series2 = np.array([ 1 , 2 , 3 ])

gfg = hermdiv(series1, series2)

print (gfg)

Output :

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

Similar Reads