Array de tri Numpy par un autre tableau

order = arr1.argsort()
sorted_arr1 = arr1[order]
sorted_arr2 = arr2[order]
Uptight Unicorn