Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Vous êtes un professionnel et vous avez besoin d'une formation ? Programmation Python
Les fondamentaux
Voir le programme détaillé
Module « scipy.special »

Fonction chebys - module scipy.special

Signature de la fonction chebys

def chebys(n, monic=False) 

Description

help(scipy.special.chebys)

Chebyshev polynomial of the second kind on :math:`[-2, 2]`.

Defined as :math:`S_n(x) = U_n(x/2)` where :math:`U_n` is the
nth Chebychev 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
-------
S : orthopoly1d
    Chebyshev polynomial of the second kind on :math:`[-2, 2]`.

See Also
--------
chebyu : Chebyshev polynomial of the second kind

Notes
-----
The polynomials :math:`S_n(x)` are orthogonal over :math:`[-2, 2]`
with weight function :math:`\sqrt{1 - (x/2)}^2`.

References
----------
.. [1] Abramowitz and Stegun, "Handbook of Mathematical Functions"
       Section 22. National Bureau of Standards, 1972.



Vous êtes un professionnel et vous avez besoin d'une formation ? Machine Learning
avec Scikit-Learn
Voir le programme détaillé