Con la ayuda del np.chebpow()
método, podemos obtener el poder de la serie Chebyshev usando el np.chebpow()
método.
Sintaxis:
np.chebpow(s1, power)
Retorno: Devuelve una array después de encender la serie.
Ejemplo n.º 1:
en este ejemplo, podemos ver que al usar el np.chebpow()
método, podemos obtener el poder de la serie chebyshev usando este método.
# import numpy import numpy as np from numpy.polynomial import chebyshev as C s1 = (4, 6, 8) # using np.chebpow() method gfg = C.chebpow(s1, 5) print(gfg)
Producción :
[224664. 429180. 381240. 305790. 227400. 151206. 91560. 47040. 21760.
7680. 2048.]
Ejemplo #2:
# import numpy import numpy as np from numpy.polynomial import chebyshev as C s1 = (3, 5, 7, 2, 4, 6) # using np.chebpow() method gfg = C.chebpow(s1, 2) print(gfg)
Producción :
[ 74. 111. 104.5 109. 88.5 70. 60. 50. 20. 24. 18. ]
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