Python | Numpy np.hermeline() method

With the help of np.hermeline() method, we can get the line specified by hermiteE series by using np.hermeline() method.
Syntax :
np.hermeline(off, scl)
Return : Return the hermiteE series for off + scl*x
Example #1 :
In this example we can see that by using np.hermeline() method, we are able to get the line specified by hermiteE series by using this method.
| # import numpy and hermeline importnumpy as np fromnumpy.polynomial.hermite_e importhermeline  Â# using np.hermeline() method gfg =hermeline(3, 4) +[1, 2]  Âprint(gfg)  | 
Output :
[4 6]
Example #2 :
| # import numpy and hermeline importnumpy as np fromnumpy.polynomial.hermite_e importhermeline  Â# using np.hermeline() method gfg =hermeline(13, 4) +[10, 20]  Âprint(gfg)  | 
Output :
[23 24]
 
				 
					


