numpy.polynomial.hermite.hermweight#
- polynomial.hermite.hermweight(x)[source]#
厄米特多项式的权重函数。
权重函数是 \(\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])