Open In App

Python | Numpy np.hermline() method

Last Updated : 11 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
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. Python3 1=1
# import numpy and hermline
import numpy as np
from numpy.polynomial.hermite import hermline

# using np.hermline() method
gfg = hermline(3, 4) + [1, 2]

print(gfg)
Output :
[4. 4.]
Example #2 : Python3 1=1
# import numpy and hermline
import numpy as np
from numpy.polynomial.hermite import hermline

# using np.hermline() method
gfg = hermline(13, 4) + [10, 20]

print(gfg)
Output :
[23. 22.]

Next Article

Similar Reads