sort command

2 ビュー (過去 30 日間)
huda nawaf
huda nawaf 2011 年 11 月 18 日
hi, if i have this array. x=[1 2; 6 8; 1 10;3 2;3 6 ;6 1]; if I sort the first column , can the other columns is arranged according to sorting of first column? as below: 1 2 1 10 3 2 3 6 6 8 6 1
thanks

回答 (2 件)

Titus Edelhofer
Titus Edelhofer 2011 年 11 月 18 日
Hi Huda,
take a look at the function sortrows ...
Titus

Jan
Jan 2011 年 11 月 18 日
x = [1 2; 6 8; 1 10; 3 2; 3 6; 6 1];
[x1, index] = sort(x(:, 1));
Xsorted = x(index, :); % or [x1, x(index, 2)];

カテゴリ

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