This is documentation for an old release of SciPy (version 0.18.1). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.special.assoc_laguerre¶
- scipy.special.assoc_laguerre(x, n, k=0.0)[source]¶
Compute the generalized (associated) Laguerre polynomial of degree n and order k.
The polynomial L(k)n(x) is orthogonal over [0, inf), with weighting function exp(-x) * x**k with k > -1.
Notes
assoc_laguerre is a simple wrapper around eval_genlaguerre, with reversed argument order (x, n, k=0.0) --> (n, k, x).