How shall I sort along a dimension?

1 回表示 (過去 30 日間)
alpedhuez
alpedhuez 2022 年 7 月 15 日
コメント済み: alpedhuez 2022 年 7 月 15 日
I have a three dimensional array where the first dimension is month the second dimension is city, and the third dimension is temperature of days in that month. I want to sort so thta the array will have, for each month, for each city, the temperature of the day in the descending order. How shall I sort?

採用された回答

Rik
Rik 2022 年 7 月 15 日
The sidebar showed this thread to me. It probably showed you a similar one before you posted this question.
The solution is similar: use the second and third input of the sort function:
sorted_data=sort(data,3,'descend')

その他の回答 (1 件)

Torsten
Torsten 2022 年 7 月 15 日
sort(A,3,'descend')
  1 件のコメント
alpedhuez
alpedhuez 2022 年 7 月 15 日
Thank you.

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

カテゴリ

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

タグ

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by