numpy.polynomial.laguerre.lagweight#
- polynomial.laguerre.lagweight(x)[source]#
拉盖尔多项式的权重函数。
权重函数为 \(exp(-x)\),积分区间为 \([0, \inf]\)。拉盖尔多项式相对于此权重函数是正交的,但没有归一化。
- 参数::
- xarray_like
计算权重函数的值。
- 返回::
- wndarray
在 x 处的权重函数。
备注
版本 1.7.0 中的新增内容。
示例
>>> from numpy.polynomial.laguerre import lagweight >>> x = np.array([0, 1, 2]) >>> lagweight(x) array([1. , 0.36787944, 0.13533528])