bundles / numpy 2.4.3 / numpy / polynomial / hermite / hermweight
function
numpy.polynomial.hermite:hermweight
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