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.legendre¶
- scipy.special.legendre(n, monic=False)[source]¶
Legendre polynomial.
Defined to be the solution of
ddx[(1−x2)ddxPn(x)]+n(n+1)Pn(x)=0;Pn(x) 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: P : orthopoly1d
Legendre polynomial.
Notes
The polynomials Pn are orthogonal over [−1,1] with weight function 1.
Examples
Generate the 3rd-order Legendre polynomial 1/2*(5x^3 + 0x^2 - 3x + 0):
>>> from scipy.special import legendre >>> legendre(3) poly1d([ 2.5, 0. , -1.5, 0. ])