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