Con la ayuda del np.cheb2poly()
método, podemos obtener el polinomio de la serie Chebyshev usando el np.cheb2poly()
método.
Sintaxis:
np.cheb2poly(array)
Retorno: Devuelve una array que tiene coeficientes de polinomio.
Ejemplo n.º 1:
en este ejemplo, podemos ver que al usar el np.cheb2poly()
método, podemos obtener el polinomio de la serie Chebyshev al usar este método.
# import numpy import numpy as np from numpy import polynomial as P x = np.array([2, 5, 7]) # using np.cheb2poly() method gfg = P.Chebyshev(x) gfg = gfg.convert(kind = P.Polynomial) gfg = P.chebyshev.cheb2poly(gfg) print(gfg)
[Polinomio([-5., 5., 14.], dominio=[-1., 1.], ventana=[-1., 1.])]
Ejemplo #2:
# import numpy import numpy as np from numpy import polynomial as P x = np.array([2, 3, 5, 7, 11]) # using np.cheb2poly() method gfg = P.Chebyshev(x) gfg = gfg.convert(kind = P.Polynomial) gfg = P.chebyshev.cheb2poly(gfg) print(gfg)
[Polinomio([8., -18., -78., 28., 88.], dominio=[-1., 1.], ventana=[-1., 1.])]
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