bundles / numpy 2.4.3 / numpy / polynomial / hermite / hermgauss
function
numpy.polynomial.hermite:hermgauss
Signature
def hermgauss ( deg ) Summary
Gauss-Hermite quadrature.
Extended Summary
Computes the sample points and weights for Gauss-Hermite quadrature. These sample points and weights will correctly integrate polynomials of degree or less over the interval with the weight function .
Parameters
deg: intNumber of sample points and weights. It must be >= 1.
Returns
x: ndarray1-D ndarray containing the sample points.
y: ndarray1-D ndarray containing the weights.
Notes
The results have only been tested up to degree 100, higher degrees may be problematic. The weights are determined by using the fact that
where is a constant independent of and is the k'th root of , and then scaling the results to get the right value when integrating 1.
Examples
from numpy.polynomial.hermite import hermgauss
✓hermgauss(2)
✗Aliases
-
numpy.polynomial.hermite.hermgauss