Sort values in a cell array
3 ビュー (過去 30 日間)
古いコメントを表示
Hi guys, It's amazing how much some people know.
Well, this is my case:
I have a vector. Suppose this:
A=[90,45,38,51];
To this vector correspond another vector. Some values may be duplicates but it is not known how many.
B=[8,1,8,3]
So, I want to sort them and set the initial values in a cell array. The result would be this:
C={[45],[51],[90,38] }
I wish I didn't have to use loop.
Thank you all for your help, especially helping me with this :)
0 件のコメント
採用された回答
その他の回答 (1 件)
Bruno Luong
2022 年 7 月 21 日
編集済み: Bruno Luong
2022 年 7 月 21 日
Another method
B=[8,1,8,3];
A=[90,45,38,51];
[Bs,i]=sort(B);
mat2cell(A(i),1,diff(find([true,diff(Bs)>0,true])))
% or more compact
mat2cell(A(i),1,diff(find([1,diff(Bs),1])))
参考
カテゴリ
Help Center および File Exchange で Shifting and Sorting Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!