This is a pre-release version (2.5.0.dev0+git20251130.2de293a). Go to latest (2.4.4)
{ } Raw JSON

bundles / numpy 2.5.0.dev0+git20251130.2de293a / numpy / polynomial / chebyshev

module

numpy.polynomial.chebyshev

source: build-install/usr/lib/python3.14/site-packages/numpy/polynomial/chebyshev.py :0

Members

Summary

No Docstrings

Additional content

Chebyshev Series (numpy.polynomial.chebyshev)

This module provides a number of objects (mostly functions) useful for dealing with Chebyshev series, including a Chebyshev class that encapsulates the usual arithmetic operations. (General information on how this module represents and works with such polynomials is in the docstring for its "parent" sub-package, numpy.polynomial).

Classes

.. autosummary:: 
    :toctree:generated/
    Chebyshev

Constants

.. autosummary:: 
    :toctree:generated/
    chebdomain
    chebzero
    chebone
    chebx

Arithmetic

.. autosummary:: 
    :toctree:generated/
    chebadd
    chebsub
    chebmulx
    chebmul
    chebdiv
    chebpow
    chebval
    chebval2d
    chebval3d
    chebgrid2d
    chebgrid3d

Calculus

.. autosummary:: 
    :toctree:generated/
    chebder
    chebint

Misc Functions

.. autosummary:: 
    :toctree:generated/
    chebfromroots
    chebroots
    chebvander
    chebvander2d
    chebvander3d
    chebgauss
    chebweight
    chebcompanion
    chebfit
    chebpts1
    chebpts2
    chebtrim
    chebline
    cheb2poly
    poly2cheb
    chebinterpolate

See also

numpy.polynomial

Notes

The implementations of multiplication, division, integration, and differentiation use the algebraic identities [1]:

where

These identities allow a Chebyshev series to be expressed as a finite, symmetric Laurent series. In this module, this sort of Laurent series is referred to as a "z-series."

References

[1]

Polynomials," Journal of Statistical Planning and Inference 14, 2008 (https://web.archive.org/web/20080221202153/https://www.math.hmc.edu/~benjamin/papers/CombTrig.pdf, pg. 4)

Aliases

  • numpy.polynomial.chebyshev