Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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])

share|improve this question
Exactly what do you mean by 'maximum elements'? – Thomas Wessel Apr 24 at 11:20

3 Answers

up vote 11 down vote accepted
>>> a.argmax(axis=0)

array([1, 1, 0])
share|improve this answer
>>> 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
share|improve this answer
v = alli.max()
index = alli.argmax()
x, y = index/8, index%8
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.