Con la ayuda del np.chebfromroots()
método, podemos obtener la serie chebyshev con las raíces pasadas como parámetro en el np.chebfromroots()
método.
Sintaxis :
np.chebfromroots(roots)
Return : Devuelve la serie chebyshev.
Ejemplo n.º 1:
en este ejemplo, podemos ver que al usar el np.chebfromroots()
método, podemos obtener la serie chebyshev que se genera de raíz y se pasa por parámetro.
# import numpy import numpy as np import numpy.polynomial.chebyshev as cheb # using np.chebfromroots() method gfg = cheb.chebfromroots((2, 4, 8, 1)) print(gfg)
Producción :
[9.9375e+01 -1.3125e+02 3.5500e+01 -3.7500e+00 1.2500e-01]
Ejemplo #2:
# import numpy import numpy as np import numpy.polynomial.chebyshev as cheb # using np.chebfromroots() method gfg = cheb.chebfromroots((-3, 4, -5, 1, 10)) print(gfg)
Producción :
[-5.19125e+02 4.52375e+02 8.00000e+01 -1.24375e+01 -8.75000e-01 6.25000e-02]
Publicación traducida automáticamente
Artículo escrito por Jitender_1998 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA