Con la ayuda del np.hermeval3d()
método, podemos evaluar una serie Hermite en 3D en el punto (x, y, z), donde (x, y, z) se define en el np.hermeval3d()
método.
Sintaxis :
np.hermeval3d(x, y, series)
Retorno : Retorna la serie hermite 3-D evaluada.
Ejemplo n.º 1:
en este ejemplo, podemos ver que al usar el np.hermeval3d()
método, podemos evaluar la serie hermita 3-D en x, y y z al usar este método.
# import numpy and hermeval3d import numpy as np from numpy.polynomial.hermite_e import hermeval3d series = np.array([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]]) # using np.hermeval3d() method gfg = hermeval3d(3, 4, 6, series) print(gfg)
Producción :
8616.0
Ejemplo #2:
# import numpy and hermeval3d import numpy as np from numpy.polynomial.hermite_e import hermeval3d series = np.array([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]]) # using np.hermeval3d() method gfg = hermeval3d([0, 1], [2, 3], [4, 5], series) print(gfg)
Producción :
[1240. 1566.]
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