Answers for "python find index of max value in numpy array"

2

python how to return max num index

import numpy as np

x=[1,2,3,4,5]

max_index=np.argmax(x) 
# return the index of the maximun element
# max_index has the value 4
Posted by: Guest on June-07-2020
0

numpy get index of n largest values

numbers = np.array([1, 3, 2, 4])
n = 2
indices = (-numbers).argsort()[:n]
Posted by: Guest on March-05-2021

Code answers related to "python find index of max value in numpy array"

Python Answers by Framework

Browse Popular Code Answers by Language