This is documentation for an old release of SciPy (version 0.19.0). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.special.genlaguerre¶
- scipy.special.genlaguerre(n, alpha, monic=False)[source]¶
Generalized (associated) Laguerre polynomial.
Defined to be the solution of
xd2dx2L(α)n+(α+1−x)ddxL(α)n+nL(α)n=0,where α>−1; L(α)n is a polynomial of degree n.
Parameters: n : int
Degree of the polynomial.
alpha : float
Parameter, must be greater than -1.
monic : bool, optional
If True, scale the leading coefficient to be 1. Default is False.
Returns: L : orthopoly1d
Generalized Laguerre polynomial.
See also
- laguerre
- Laguerre polynomial.
Notes
For fixed α, the polynomials L(α)n are orthogonal over [0,∞) with weight function e−xxα.
The Laguerre polynomials are the special case where α=0.