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