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.chebyu¶
- scipy.special.chebyu(n, monic=False)[source]¶
Chebyshev polynomial of the second kind.
Defined to be the solution of
(1−x2)d2dx2Un−3xddxUn+n(n+2)Un=0;Un 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: U : orthopoly1d
Chebyshev polynomial of the second kind.
See also
- chebyt
- Chebyshev polynomial of the first kind.
Notes
The polynomials Un are orthogonal over [−1,1] with weight function (1−x2)1/2.