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

Last Updated : 11 Dec, 2019

With the help of **np.hermline()** method, we can get the line specified by hermite series by using np.hermline() method.

Syntax : np.hermline(off, scl)
Return : Return the hermite series for off + scl*x

Example #1 :
In this example we can see that by using np.hermline() method, we are able to get the line specified by hermite series by using this method.

import numpy as np

from numpy.polynomial.hermite import hermline

gfg = hermline( 3 , 4 ) + [ 1 , 2 ]

print (gfg)

Output :

[4. 4.]

Example #2 :

import numpy as np

from numpy.polynomial.hermite import hermline

gfg = hermline( 13 , 4 ) + [ 10 , 20 ]

print (gfg)

Output :

[23. 22.]

Similar Reads