Reshape a cell avoiding the loop

2 ビュー (過去 30 日間)
Giorgos Papakonstantinou
Giorgos Papakonstantinou 2013 年 6 月 11 日
I have the cell for example:
a =
'0.0' '0.0'
'0.1' '-0.4'
'0.1' '0.8'
'0.2' '2.3'
'0.3' '3.4'
'0.3' '-3.2'
'0.4' '-6.9'
'0.5' '-1.8'
'0.5' '7.2'
'0.6' '10.0'
and I want o reshape it like this.
d =
'0.0' '0.0' '0.3' '-3.2'
'0.1' '-0.4' '0.4' '-6.9'
'0.1' '0.8' '0.5' '-1.8'
'0.2' '2.3' '0.5' '7.2'
'0.3' '3.4' '0.6' '10.0'
I want to avoid the loop because the cell dimensions are very large. Thank you!

採用された回答

Iain
Iain 2013 年 6 月 11 日
I think:
b = a';
c = reshape(b,cols,rows,numel(a)/cols/rows);
c = permute(c,[2 1 3]);
d = reshape(c,[],rows);
should do it...
  6 件のコメント
Giorgos Papakonstantinou
Giorgos Papakonstantinou 2013 年 6 月 11 日
I think by accident you made a typo.
It should be:
reshape(c,2,[])
Thank you. I really don't understand how permute works.
Iain
Iain 2013 年 6 月 11 日
Permute swaps dimensions round.

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

その他の回答 (2 件)

the cyclist
the cyclist 2013 年 6 月 11 日
編集済み: the cyclist 2013 年 6 月 11 日
d = [a(1:5,:),a(6:10,:)];
You can generalize this, of course, but you did not provide enough detail. If you always want the top half and bottom half, for example, you could use the size() command to determine the "height", and use half the height to determine the cutoff, which I just hard-coded as 5 here.
  1 件のコメント
Giorgos Papakonstantinou
Giorgos Papakonstantinou 2013 年 6 月 11 日
What if the the initial cell a has 100 rows and two columns (size 100x2). How do I cut the cell in sets of 5 avoiding the for loop. The resulting cell will have size 5x40 and it will start just as the cell d that I indicated above.

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


Giorgos Papakonstantinou
Giorgos Papakonstantinou 2013 年 6 月 11 日
I am sorry I should be more explanatory. Let's say that I want to split in sets of 2 and concatenate them.
so it would be:
c =
'0.0' '0.0' '0.1' '0.8' '0.3' '3.4' '0.4' '-6.9' '0.5' '7.2'
'0.1' '-0.4' '0.2' '2.3' '0.3' '-3.2' '0.5' '-1.8' '0.6' '10.0'

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by