Con la ayuda del np.poly2herme()
método, podemos obtener la serie hermiteE del polinomio usando el np.poly2herme()
método.
Sintaxis:
np.poly2herme(series)
Retorno: Retorna los coeficientes de la serie hermiteE.
Ejemplo #1:
En este ejemplo, podemos ver que al usar el np.poly2herme()
método, podemos obtener los coeficientes de la serie hermiteE del polinomio usando este método.
# import numpy and poly2herme import numpy as np from numpy.polynomial.hermite_e import poly2herme x = np.array([0.1, 0.2, 0.3, 0.4]) # using np.poly2herme() method gfg = poly2herme(x) print(gfg)
Producción :
[0,4 1,4 0,3 0,4]
Ejemplo #2:
# import numpy and poly2herme import numpy as np from numpy.polynomial.hermite_e import poly2herme x = np.array([-0.5, -0.4, -0.3, -0.2, -0.1, 0, 0.4, 0.5]) # using np.poly2herme() method gfg = poly2herme(x) print(gfg)
Producción :
[4,9 51,5 17,1 52,3 5,9 10,5 0,4 0,5]
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