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.laguerre¶
- scipy.special.laguerre(n, monic=False)[source]¶
Laguerre polynomial.
Defined to be the solution of
xd2dx2Ln+(1−x)ddxLn+nLn=0;Ln is a polynomial of degree n.
Parameters: n : int
Degree of the polynomial.
monic : bool, optional
If True, scale the leading coefficient to be 1. Default is False.
Returns: L : orthopoly1d
Laguerre Polynomial.
Notes
The polynomials Ln are orthogonal over [0,∞) with weight function e−x.