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.sh_chebyt¶
- scipy.special.sh_chebyt(n, monic=False)[source]¶
Shifted Chebyshev polynomial of the first kind.
Defined as T∗n(x)=Tn(2x−1) for Tn the nth Chebyshev polynomial of the first kind.
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
Shifted Chebyshev polynomial of the first kind.
Notes
The polynomials T∗n are orthogonal over [0,1] with weight function (x−x2)−1/2.