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.chebys¶
- scipy.special.chebys(n, monic=False)[source]¶
Chebyshev polynomial of the second kind on [−2,2].
Defined as Sn(x)=Un(x/2) where Un is the nth Chebychev polynomial of the second kind.
Parameters: n : int
Degree of the polynomial.
monic : bool, optional
If True, scale the leading coefficient to be 1. Default is False.
Returns: S : orthopoly1d
Chebyshev polynomial of the second kind on [−2,2].
See also
- chebyu
- Chebyshev polynomial of the second kind
Notes
The polynomials Sn(x) are orthogonal over [−2,2] with weight function √1−(x/2)2.
References
[R391] Abramowitz and Stegun, “Handbook of Mathematical Functions” Section 22. National Bureau of Standards, 1972.