With the help of np.hermediv() method, we can get the division of two hermiteE series by using np.hermediv() method.
Syntax :
np.hermediv(series1, series2)
Return : Return the division of two hermiteE series.
Example #1 :
In this example we can see that by using np.hermediv() method, we are able to get the division of two hermiteE series by using this method.
| # import numpy and hermediv importnumpy as np fromnumpy.polynomial.hermite_e importhermediv  Âseries1 =np.array([1, 2, 3, 4]) series2 =np.array([10, 11, 12, 13])  Â# using np.hermediv() method gfg =hermediv(series1, series2)  Âprint(gfg)  | 
Output :
(array([0.30769231]), array([-2.07692308, -1.38461538, -0.69230769]))
Example #2 :
| # import numpy and hermediv importnumpy as np fromnumpy.polynomial.hermite_e importhermediv  Âseries1 =np.array([11, 22, 33, 44]) series2 =np.array([10, 11, 12, 13])  Â# using np.hermediv() method gfg =hermediv(series1, series2)  Âprint(gfg)  | 
Output :
(array([3.38461538]), array([-22.84615385, -15.23076923, -7.61538462]))

 
                                    







