bundles / scipy latest / scipy / special / _basic / assoc_laguerre
function
scipy.special._basic:assoc_laguerre
source: /scipy/special/_basic.py :1507
Signature
def assoc_laguerre ( x , n , k = 0.0 ) Summary
Compute the generalized (associated) Laguerre polynomial of degree n and order k.
Extended Summary
The polynomial is orthogonal over [0, inf), with weighting function exp(-x) * x**k with k > -1.
Parameters
x: float or ndarrayPoints where to evaluate the Laguerre polynomial
n: intDegree of the Laguerre polynomial
k: intOrder of the Laguerre polynomial
Returns
: assoc_laguerre: float or ndarrayAssociated laguerre polynomial values
Notes
assoc_laguerre is a simple wrapper around eval_genlaguerre, with reversed argument order (x, n, k=0.0) --> (n, k, x).
Aliases
-
scipy.special.assoc_laguerre