Question about sorting an array column by column
4 ビュー (過去 30 日間)
古いコメントを表示
I need to sort each column of a 1073x15 array for a heatmap in MATLAB.
[~,sortdices] = sort(choose_data(:,1),'ascend');
%choose_data = choose_data(:,sortdices);
for i=1:15
choose_data(:,i) = choose_data(sortdices,i)
end
this is my code. choose_data is the 1073x15 array. My output ends up being the first column sorted in ascending order, but the rest not. How do I fix it, such that all columns are sorted in ascending order? (Thank you for any help!)
2 件のコメント
Walter Roberson
2021 年 9 月 27 日
Is each column to be sorted independently, or should the columns be sorted "within" each previous column? That is, if two rows have the same value for column 1, then look at column 2 to determine the order; if those are equal, look at column 3, and so on ? If so then sortrows()
回答 (2 件)
the cyclist
2021 年 9 月 27 日
編集済み: the cyclist
2021 年 9 月 27 日
choose_data = sort(choose_data)
will sort every column independently. Ascending sorting is the default, so you don't need to specify that. (But it also doesn't hurt, and might make the code clearer.)
2 件のコメント
the cyclist
2021 年 9 月 27 日
編集済み: the cyclist
2021 年 9 月 27 日
Strange. Here is an example that illustrates that the syntax works:
M = magic(3)
M = sort(M)
Note that you do not need to do anything in a for loop. That one line of code will sort all columns of the array. You also don't need to do any indexing into the array.
Steven Lord
2021 年 9 月 27 日
Specify the dim input argument to the sort function.
A = magic(5)
B = sort(A, 1)
% Compare with
C = sort(A, 2)
If you want to sort one of the columns and have the rest of the rows rearrange correspondingly see the sortrows function.
D = sortrows(A, 2) % sort by column 2
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Distribution Plots についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!