numpy.polynomial.legendre.legweight

原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.polynomial.legendre.legweight.html

译者:飞龙 UsyiyiCN

校对:(虚位以待)

numpy.polynomial.legendre.legweight(x)[source]

勒让德多项式的权重函数。

权重函数为1,积分间隔为[-1, 1]关于该权重函数,勒让德多项式是正交的,但不是归一化的。

参数:

x:array_like

将计算加权函数的值。

返回:

w:ndarray

x处的权重函数。

笔记