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