scipy.special.
assoc_laguerre#
- scipy.special.assoc_laguerre(x, n, k=0.0)[源代码]#
计算 n 次 k 阶广义(关联)拉盖尔多项式。
该多项式 \(L^{(k)}_n(x)\) 在
[0, inf)
上正交,加权函数为exp(-x) * x**k
,其中k > -1
。- 参数:
- x浮点数或 ndarray
评估拉盖尔多项式的点
- n整数
拉盖尔多项式的次数
- k整数
拉盖尔多项式的阶数
- 返回:
- assoc_laguerre: 浮点数或 ndarray
关联拉盖尔多项式的值
备注
assoc_laguerre
是对eval_genlaguerre
的简单封装,参数顺序颠倒为(x, n, k=0.0) --> (n, k, x)
。