How combine <16x1 cell> and <16x1 cell> into <32x1 cell> by using matlab

2 ビュー (過去 30 日間)
Ismail T. Ahmed
Ismail T. Ahmed 2017 年 6 月 15 日
コメント済み: Ismail T. Ahmed 2017 年 6 月 16 日
I have some images from each image product 16x1 cell so how i can combined each 16x1 cell with next 16x1 cell and with next 16x1 cell ........etc

採用された回答

Walter Roberson
Walter Roberson 2017 年 6 月 15 日
[Cell_1; Cell_2; ...]
or
reshape( [Cell_1, Cell_2, ...], [], 1)
Depending if you want the pattern to be AAAAAAAAAAAAAAAABBBBBBBBBBBBBBB or ABABABABABABABABABABABABABABABAB
  7 件のコメント
Walter Roberson
Walter Roberson 2017 年 6 月 15 日
After the loop add
f = f(:);
Ismail T. Ahmed
Ismail T. Ahmed 2017 年 6 月 16 日
Thanks Walter a lot

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

その他の回答 (0 件)

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by