Hi,
how can I sort an array like

array([[5, 2],
       [1, 3]])

along the first column to obtain

array([[1, 3],
       [5, 2]])
i.e. keeping track of the ordered couples?

Thanks,
A
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to