Open In App

Python | Numpy np.hermgauss() method

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




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




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


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads