sorting specific columns of a matrix

2 ビュー (過去 30 日間)
Ozgur Avsar
Ozgur Avsar 2016 年 1 月 24 日
編集済み: Triveni 2016 年 3 月 13 日
trying not to sort entire matrix just the columns that conforms the rule. the example is a =[8 6 7; 9 6 7; 10 7 8; 9 9 8; 10 9 8; 9 9 10; 10 9 10; 11 9 10]; I want to sort the rows according to 2 and 3 respectively, but if the value on the second row is greater than the value on the third row this columns should also be sorted by the first column descending. The answer should be: b = [8 6 7; 9 6 7; 10 7 8; 10 9 8; 9 9 8; 9 9 10; 10 9 10; 11 9 10]; any advice?

回答 (1 件)

Triveni
Triveni 2016 年 1 月 24 日
編集済み: Triveni 2016 年 3 月 13 日
out = sort(a, 'descend');
for ascending order
sort(a, 'ascend');
  6 件のコメント
Ozgur Avsar
Ozgur Avsar 2016 年 1 月 24 日
a = [8 6 7; 9 6 7; 10 7 8; 9 9 8; 10 9 8; 9 9 10; 10 9 10; 11 9 10]; b = [8 6 7; 9 6 7; 10 7 8; 10 9 8; 9 9 8; 9 9 10; 10 9 10; 11 9 10]; b is the answer
Ozgur Avsar
Ozgur Avsar 2016 年 1 月 24 日
b=sortrows(a,[2 3]) but then?

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

カテゴリ

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