Con la ayuda del np.hermfromroots()
método, podemos obtener el coeficiente de la serie Hermite de las raíces dadas usando el np.hermfromroots()
método.
Sintaxis:
np.hermfromroots(roots)
Retorno: Retorna el coeficiente de la serie hermite.
Ejemplo n.° 1:
en este ejemplo, podemos ver que al usar el np.hermfromroots()
método, podemos obtener el coeficiente de la serie de Hermite a partir de raíces dadas al usar este método.
# import numpy and hermfromroot import numpy as np from numpy.polynomial.hermite import hermfromroots roots = np.array([0.1, 2, 0.3, 4]) # using np.hermfromroots() method gfg = hermfromroots(roots) print(gfg)
Producción :
[6,205 -6,49 3,3575 -0,8 0,0625]
Ejemplo #2:
# import numpy and hermfromroot import numpy as np from numpy.polynomial.hermite import hermfromroots roots = np.array([1, 2, 3, 4, 1.0001]) # using np.hermfromroots() method gfg = hermfromroots(roots) print(gfg)
Producción :
[-7.4754225e+01 7.2628250e+01 -2.9500950e+01 6.2501250e+00
-6.8750625e-01 3.1250000e-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