Sort和UnSort的小技巧

Sort和UnSort的小技巧:spa

 

記錄sortidx,對sortidx再從小到大排序就能夠獲得用於還原的unsortidx.code

 

對於序列A:blog

 

1 sort_idx = np.argsort(A)
2 
3 un_sort_idx = np.argsort(sort_idx)
4 
5 A = A[sort_idx][un_sort_idx]
相關文章
相關標籤/搜索