I have a 2 dimensional NumPy array. I know how to get the maximum values over axes:
>>> a = array([[1,2,3],[4,3,1]]) >>> amax(a,axis=0) array([4, 3, 3])
How can I get the indices of the maximum elements? So I would like as output array([1,1,0])
array([1,1,0])
>>> a.argmax(axis=0) array([1, 1, 0])
>>> import numpy as np >>> a = np.array([[1,2,3],[4,3,1]]) >>> i,j = np.unravel_index(a.argmax(), a.shape) >>> a[i,j] 4
v = alli.max() index = alli.argmax() x, y = index/8, index%8
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
2 years ago
viewed
8003 times
active
6 months ago
Get the weekly newsletter!
see an example newsletter
By subscribing, you agree to the privacy policy and terms of service.