フィルターのクリア

How to do sort rows more efficiently.

3 ビュー (過去 30 日間)
C Zeng
C Zeng 2013 年 5 月 28 日
Hi, all!
I plan to sort rows to an numerical matrix. First sort them in descending order based on first column, then if there is a tie, sort those in the tie in descending order on second column, and so on(if tie sort on the next column).
Generally, it is possible to do this kinder of sorting but I notice "sortrows" command and it can sort rows based on which column. But is there a easier way to do my algorithm described above?
Thanks.

採用された回答

Jan
Jan 2013 年 5 月 28 日
編集済み: Jan 2013 年 5 月 28 日
I cannot imagine that there is any easier method than sortrows:
x = randi(4, 8, 8);
y = sortrows(x);
[EDITED] For large arrays like randi(4, 1e5, 10) this is about 10% faster than sortrows:
function [y, index] = leanSortRows(x)
[v, index] = sort(x(:, n)); %#ok<ASGLU>
for k = n-1:-1:1
[v, index2] = sort(x(index, k)); %#ok<ASGLU>
index = index(index2);
end
y = x(index, :);
This is similar to the fallback for backward sorting. The MEX-function sortrows.c, which called for standard cases uses the quicksort algorithm of the C-libs, which are obviously slower than Matlab's built-in SORT.
  1 件のコメント
C Zeng
C Zeng 2013 年 5 月 28 日
Thanks, Jan! Let me think it over again.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeShifting and Sorting Matrices についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by