Hi, I know its easy, but I am not just getting it...
How do I get last element on axis=1 for:
a = array([[ 0, 1, 2, 3, 4],
[ 5, 6, 7, 8, 9],
[10, 11, 12, 13, 14],
[15, 16, 17, 18, 19],
[20, 21, 22, 23, 24]])
Expected: array([4, 9, 14, 19, 24])
Thanks
Vishal Rana
_______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
