may i ask how to sort the row of matrix in large data?

1 回表示 (過去 30 日間)
loong seow li
loong seow li 2016 年 5 月 6 日
コメント済み: loong seow li 2016 年 5 月 6 日
may i ask how to sort the row of matrix in large data? For example, there are 28694 rows... how I arrange the rows according my own number?
a=[a0, a1,................,a28694]
Let say I want arrange in
b=[a4,a5,a28694,.......,a2,a56,a34]
is that possible arrange like this?
  2 件のコメント
CS Researcher
CS Researcher 2016 年 5 月 6 日
How do you define your own numbers? Is it random? Is there a pattern?
loong seow li
loong seow li 2016 年 5 月 6 日
it is a array from other data...

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

回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 5 月 6 日
a=[10 20 4 5]
idx=[2 1 3 4]
out=a(idx)
  3 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2016 年 5 月 6 日
You have to define the new order.
loong seow li
loong seow li 2016 年 5 月 6 日
thanks a lot

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

カテゴリ

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