Open In App

Python | Numpy np.hermline() method

Last Updated : 11 Dec, 2019
Improve
Improve
Like Article
Like
Save
Share
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.




# 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 :




# 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.]


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads