numpy.polynomial.hermite.hermweight#

polynomial.hermite.hermweight(x)[源代码]#

Hermite 多项式的权重函数.

权重函数是 \(\exp(-x^2)\),积分区间是 \([-\inf, \inf]\). 关于这个权重函数,埃尔米特多项式是正交的,但未归一化.

参数:
xarray_like

将计算权重函数的值.

返回:
wndarray

x 处的权重函数.

备注

在 1.7.0 版本加入.

示例

>>> import numpy as np
>>> from numpy.polynomial.hermite import hermweight
>>> x = np.arange(-2, 2)
>>> hermweight(x)
array([0.01831564, 0.36787944, 1.        , 0.36787944])