14

I want a function that behaves like enumerate, but on numpy arrays.

>>> list(enumerate("hello"))
[(0, "h"), (1, "e"), (2, "l"), (3, "l"), (4, "o")]

>>> for x, y, element in enumerate2(numpy.array([[i for i in "egg"] for j in range(3)])):
        print(x, y, element)

0 0 e
1 0 g
2 0 g
0 1 e
1 1 g
2 1 g
0 2 e
1 2 g
2 2 g

Currently I am using this function:

def enumerate2(np_array):
    for y, row in enumerate(np_array):
        for x, element in enumerate(row):
            yield (x, y, element)

Is there any better way to do this? E.g. an inbuilt function (I couldn't find any), or a different definition that is faster in some way.

rlms
  • 10,650
  • 8
  • 44
  • 61
  • 3
    possible duplicate of [Iterating over a numpy array](http://stackoverflow.com/questions/6967463/iterating-over-a-numpy-array) or if you don't care about the ordering: http://stackoverflow.com/questions/971678/iterating-through-a-multidimensional-array-in-python/971774#971774 – tom10 Jan 08 '14 at 19:19

1 Answers1

26

You want np.ndenumerate:

>>> for (x, y), element in np.ndenumerate(np.array([[i for i in "egg"] for j in range(3)])):
...     print(x, y, element)
... 
(0L, 0L, 'e')
(0L, 1L, 'g')
(0L, 2L, 'g')
(1L, 0L, 'e')
(1L, 1L, 'g')
(1L, 2L, 'g')
(2L, 0L, 'e')
(2L, 1L, 'g')
(2L, 2L, 'g')
Jaime
  • 65,696
  • 17
  • 124
  • 159
  • Thanks, I'll accept this when the n minutes are up. Guess I should've looked at other parts of the library than the array methods, I suppose this makes more sense. – rlms Jan 08 '14 at 19:21