3 Mar
2009
3 Mar
'09
1:11 a.m.
Hi Robert 2009/2/27 Robert Kern <robert.kern@gmail.com>:
a[ix_([2,3,6],range(a.shape[1]),[3,2])]
If anyone knows a better way?
One could probably make ix_() take slice objects, too, to generate the correct arange() in the appropriate place.
I was wondering how one would implement this, since the ix_ function has no knowledge of the dimensions of "a". The best I could do was to allow a[ix_[[2,3,6], :3, [3, 2]] to work (see attached patch). Cheers Stéfan