bundles / numpy latest / numpy / polynomial / hermite / hermweight
function
numpy.polynomial.hermite:hermweight
source: build-install/usr/lib/python3.14/site-packages/numpy/polynomial/hermite.py :1660
Signature
def hermweight ( x ) Summary
Weight function of the Hermite polynomials.
Extended Summary
The weight function is and the interval of integration is . the Hermite polynomials are orthogonal, but not normalized, with respect to this weight function.
Parameters
x: array_likeValues at which the weight function will be computed.
Returns
w: ndarrayThe weight function at
x.
Examples
import numpy as np from numpy.polynomial.hermite import hermweight x = np.arange(-2, 2)✓
hermweight(x)
✗Aliases
-
numpy.polynomial.hermite.hermweight