Loading [MathJax]/jax/output/HTML-CSS/jax.js
SciPy

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_chebyu

scipy.special.sh_chebyu(n, monic=False)[source]

Shifted Chebyshev polynomial of the second kind.

Defined as Un(x)=Un(2x1) for Un the nth Chebyshev 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:

U : orthopoly1d

Shifted Chebyshev polynomial of the second kind.

Notes

The polynomials Un are orthogonal over [0,1] with weight function (xx2)1/2.