Con la ayuda del np.hermone()
método, podemos usar hermzero en lugar de np.ones usando el np.hermone()
método.
Sintaxis:
np.hermone()
retorno: array de retorno ([1])
Ejemplo n.º 1:
en este ejemplo, podemos ver que al usar el np.hermone()
método, podemos obtener la funcionalidad de np.ones de la misma manera que este método.
# import numpy and hermone import numpy as np from numpy.polynomial.hermite import hermone # using np.hermone() method gfg = hermone + [1, 2, 3, 4, 5] print(gfg)
Producción :
[2 3 4 5 6]
Ejemplo #2:
# import numpy and hermone import numpy as np from numpy.polynomial.hermite import hermone # using np.hermone() method gfg = hermone + [[2, 4, 6], [3, 6, 9]] print(gfg)
Producción :
[[ 3 5 7]
[ 4 7 10]]
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