Con la ayuda del Numpy matrix.argmax()
método, podemos encontrar el valor de índice del elemento máximo en la array dada que tiene una o más dimensiones.
Sintaxis:
matrix.argmax()
Retorno: Número de índice de retorno del elemento máximo en la array
Ejemplo #1:
En este ejemplo podemos ver que con la ayuda del matrix.argmax()
método podemos encontrar el índice del elemento máximo en una array dada.
# import the important module in python import numpy as np # make a matrix with numpy gfg = np.matrix('[1, 2, 3, 4]') # applying matrix.argmax() method geeks = gfg.argmax() print(geeks)
Producción:
3
Ejemplo #2:
# import the important module in python import numpy as np # make a matrix with numpy gfg = np.matrix('[1, 2, 3; 4, 5, 6; 7, 8, 9]') # applying matrix.argmax() method geeks = gfg.argmax() print(geeks)
Producción:
8
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