How to sort orders of rows?

1 回表示 (過去 30 日間)
Laliguras
Laliguras 2013 年 3 月 27 日
Hi, I have a matrix, which I need to sort in two group: First group: Pick first 5 rows (and all columns) and leave next five rows and again pick another five, leave next five and so on. Second group: Pick only those which were not selected in first group.
Thanks in advance.
  1 件のコメント
Laliguras
Laliguras 2013 年 3 月 28 日
As follow-up to previous question, how do I get the average value (mean) of each of those picked 5 rows?
Thanks

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

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 3 月 27 日
編集済み: Azzi Abdelmalek 2013 年 3 月 27 日
Example
A=rand(20,6);
idx=reshape(1:size(A,1),5,[]);
m=size(idx,2);
idx1=idx(:,1:2:end);
idx2=idx(:,2:2:end);
A1=A(idx1(:),:)
A2=A(idx2(:),:)
  1 件のコメント
Laliguras
Laliguras 2013 年 3 月 27 日
Thanks. It works.

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

その他の回答 (0 件)

カテゴリ

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