scipy.special.

assoc_laguerre#

scipy.special.assoc_laguerre(x, n, k=0.0)[source]#

计算广义(关联)拉盖尔多项式,次数为 n,阶数为 k。

多项式 \(L^{(k)}_n(x)\)[0, inf) 上正交,权重函数为 exp(-x) * x**k,其中 k > -1

参数:
xfloat 或 ndarray

评估拉盖尔多项式的点

nint

拉盖尔多项式的次数

kint

拉盖尔多项式的阶数

返回:
assoc_laguerre: float 或 ndarray

关联拉盖尔多项式的值

附注

assoc_laguerre 是对 eval_genlaguerre 的简单包装,参数顺序相反 (x, n, k=0.0) --> (n, k, x)