sort cell arrays based on mean value

1 回表示 (過去 30 日間)
Amir Hosein Shokouhy
Amir Hosein Shokouhy 2021 年 7 月 17 日
回答済み: Star Strider 2021 年 7 月 17 日
Hi,
I have a 1*8 cell variable. I wanna sort these cells based on their mean values.
The mean valuse are as below:
Thanks,
Amir

採用された回答

Star Strider
Star Strider 2021 年 7 月 17 日
Try something like this —
c = mat2cell(rand(150,1), [10 20 30 40 50], 1) % Create Cell ARray
c = 5×1 cell array
{10×1 double} {20×1 double} {30×1 double} {40×1 double} {50×1 double}
[cm,idx] = sort(cellfun(@mean, c)) % Calculate & Sort By Means
cm = 5×1
0.4288 0.4607 0.4721 0.5427 0.5889
idx = 5×1
5 3 4 1 2
c_sorted = c(idx) % Sorted Cell Array
c_sorted = 5×1 cell array
{50×1 double} {30×1 double} {40×1 double} {10×1 double} {20×1 double}
.

その他の回答 (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