Open In App

Python | Numpy np.hermgauss() method

Last Updated : 06 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of np.hermgauss() method, we can get the quadrature value of gaussian hermite by using np.hermgauss() method.
Syntax : np.hermgauss(degree) Return : Return the quadrature of gaussian hermite.
Example #1 : In this example we can see that by using np.hermgauss() method, we are able to get the quadrature of gaussian hermite by using this method. Python3 1=1
# import numpy and hermgauss
import numpy as np

# using np.hermgauss() method
gfg = hermgauss(3)

print(gfg)
Output :
(array([-1.22474487, 0., 1.22474487]), array([0.29540898, 1.1816359, 0.29540898]))
Example #2 : Python3 1=1
# import numpy and hermgauss
import numpy as np

# using np.hermgauss() method
gfg = hermgauss(5)

print(gfg)
Output :
(array([-2.02018287, -0.95857246, 0., 0.95857246, 2.02018287]), array([0.01995324, 0.39361932, 0.94530872, 0.39361932, 0.01995324]))

Next Article

Similar Reads