Con la ayuda del np.hermint()
método, podemos integrar la serie hermite usando el np.hermint()
método.
Sintaxis :
np.hermint(series, m)
Retorno : Retorna el coeficiente de la serie integrada.
Ejemplo n.º 1:
en este ejemplo, podemos ver que al usar el np.hermint()
método, podemos obtener el coeficiente de la serie integrada de la serie Hermite al usar este método.
# import numpy and harmint import numpy as np from numpy.polynomial.hermite import hermint series = np.array([2, 0.3, 4, 0.5, 6]) # using np.harmint() method gfg = hermint(series, m = 1) print(gfg)
Producción :
[-0.6 1. 0.075 0.66666667 0.0625 0.6]
Ejemplo #2:
# import numpy and harmint import numpy as np from numpy.polynomial.hermite import hermint series = np.array([1, 2, 3, 4, 5]) # using np.harmint() method gfg = hermint(series, m = 2) print(gfg)
Producción :
[4,5 -2,5 0,125 0,08333333 0,0625 0,05 0,04166667]
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