On this page
numpy.polynomial.chebyshev.chebgauss
polynomial.chebyshev.chebgauss(deg)[source]- 
    
Gauss-Chebyshev quadrature.
Computes the sample points and weights for Gauss-Chebyshev quadrature. These sample points and weights will correctly integrate polynomials of degree
or less over the interval
with the weight function
.
- Parameters
 - 
      
degint- 
        
Number of sample points and weights. It must be >= 1.
 
 - Returns
 - 
      
xndarray- 
        
1-D ndarray containing the sample points.
 yndarray- 
        
1-D ndarray containing the weights.
 
 
Notes
New in version 1.7.0.
The results have only been tested up to degree 100, higher degrees may be problematic. For Gauss-Chebyshev there are closed form solutions for the sample points and weights. If n =
deg, then 
© 2005–2021 NumPy Developers
Licensed under the 3-clause BSD License.
 https://numpy.org/doc/1.20/reference/generated/numpy.polynomial.chebyshev.chebgauss.html