Con la ayuda del np.hermefromroots()
método, podemos obtener la serie hermiteE de las raíces dadas usando np.hermefromroots()
el método.
Sintaxis:
np.hermefromroots(roots)
Retorno: Retorna la serie hermiteE.
Ejemplo #1:
En este ejemplo, podemos ver que al usar np.hermefromroots()
el método, podemos obtener la serie hermiteE de las raíces dadas al usar este método.
# import numpy and hermefromroots import numpy as np from numpy.polynomial.hermite_e import hermefromroots series = np.array([0.1, 0.2, 0.3, 0.4, 0.5]) # using np.hermefromroots() method gfg = hermefromroots(series) print(gfg)
Producción :
[-4.7262 17.5774 -9.225 10.85 -1.5 1.]
Ejemplo #2:
# import numpy and hermefromroots import numpy as np from numpy.polynomial.hermite_e import hermefromroots series = np.array([1, 0, 0, 1, 1, 0]) # using np.hermefromroots() method gfg = hermefromroots(series) print(gfg)
Producción :
[24. -48. 63. -31. 18. -3. 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