Python | Numpy np.hermegauss() method Last Updated : 11 Dec, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report With the help of np.hermegauss() method, we can get the quadrature of gaussian hermiteE series by using np.hermegauss() method. Syntax : np.hermegauss(deg) Return : Return the quadrature of gaussian hermiteE series. Example #1 : In this example we can see that by using np.hermegauss() method, we are able to get the quadrature of gaussian hermiteE series by using this method. Python3 1=1 # import numpy as np import numpy as np from numpy.polynomial.hermite_e import hermegauss # using np.hermegauss() method gfg = hermegauss(2) print(gfg) Output : (array([-1., 1.]), array([1.25331414, 1.25331414])) Example #2 : Python3 1=1 # import numpy as np import numpy as np from numpy.polynomial.hermite_e import hermegauss # using np.hermegauss() method gfg = hermegauss(3) print(gfg) Output : (array([-1.73205081, 0., 1.73205081]), array([0.41777138, 1.67108552, 0.41777138])) Comment More infoAdvertise with us Next Article Python | Numpy np.hermeone() method J jitender_1998 Follow Improve Article Tags : Python Python-numpy Python numpy-Mathematical Function Practice Tags : python Similar Reads Python | Numpy np.hermgauss() method 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 ge 1 min read Python | Numpy np.hermone() method Output : [[ 3 5 7] [ 4 7 10]] 1 min read Python | Numpy np.hermzero() method With the help of np.hermzero() method, we can use hermzero instead of np.zeros by using np.hermzero() method. Syntax : np.hermzero() Return : Return array([0]) Example #1 : In this example we can see that by using np.hermzero() method, we are able to get the functionality of np.zeros as same as this 1 min read Python | Numpy np.hermeone() method With the help of np.hermeone() method, we can use hermeone instead of np.ones() by using np.hermeone() method. Syntax : np.hermeone Return : Return the array of ones. Example #1 : In this example we can see that by using np.hermeone() method, we are able to get the functionality of np.ones as same a 1 min read Python | Numpy np.hermeval2d() method With the help of np.hermeval2d() method, we can evaluate a 2-D hermite series on point (x, y), where (x, y) is defined in the np.hermeval2d() method. Syntax : np.hermeval2d(x, y, series) Return : Return the evaluated 2-D hermite series. Example #1 : In this example we can see that by using np.hermev 1 min read Python | Numpy np.hermeval3d() method With the help of np.hermeval3d() method, we can evaluate a 3-D hermite series on point (x, y, z), where (x, y, z) is defined in the np.hermeval3d() method. Syntax : np.hermeval3d(x, y, series) Return : Return the evaluated 3-D hermite series. Example #1 : In this example we can see that by using np. 1 min read Like