numpy.polynomial.hermite_e.hermeweight#

polynomial.hermite_e.hermeweight(x)[源代码]#

Hermite_e 多项式的权重函数.

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

参数:
xarray_like

将计算权重函数的值.

返回:
wndarray

x 处的权重函数.

备注

在 1.7.0 版本加入.