Suppose I have
a = array([[1, 2], [3, 4]])
and
b = array([1,1])
I\'d like to use b in index a
According the numpy tutorial:
a[tuple(b)]
is the correct way to do this:
http://www.scipy.org/Tentative_NumPy_Tutorial#head-3f4d28139e045a442f78c5218c379af64c2c8c9e