How can I sort data in increasing order

10 ビュー (過去 30 日間)
JAKE WISNIEWSKI
JAKE WISNIEWSKI 2021 年 9 月 24 日
コメント済み: Image Analyst 2021 年 9 月 27 日
I have been given this data
I want to classify the length in each row as either the shortest(S), longest(L), or other (P or Q) so i can use this equation S+L=P+Q
Here is my code so far.
  3 件のコメント
JAKE WISNIEWSKI
JAKE WISNIEWSKI 2021 年 9 月 26 日
Thank you for the input. I will be sure to do this in the future.
Image Analyst
Image Analyst 2021 年 9 月 27 日
@JAKE WISNIEWSKI, Why can't you do it now? All I can suggest is to use sort() or sortrows(). And I'm not sure I buy this equation
S+L=P+Q
What makes you think it will be true? For example for one row where the L's are [6,2,7,9] you have
2 + 9 = 6 + 7
or
11 = 13
which is obviously not true.

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

回答 (1 件)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021 年 9 月 24 日
Use sort() that sorts in an ascending order and then take the indexes that will be used for the others, OR put in a table using array2table() and sort them in order.

カテゴリ

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