Storing Cell elements in a single matrix

I have a cell of size (8*11) and each element of this cell is of size (32*32).
Now I have to store all elements of the cell in a single matrix of size
(32*8*11 , 32),
means stacking all the (11*8 = 88) elements of the cell (each of size 32*32) one after other.
Someone please help!

 採用された回答

madhan ravi
madhan ravi 2019 年 6 月 8 日
編集済み: madhan ravi 2019 年 6 月 8 日

0 投票

a = cat(3,yourcell{:})

3 件のコメント

Aniket Kumar
Aniket Kumar 2019 年 6 月 8 日
thanks for your answer, but this is the error coming
"Error using cat
Dimensions of matrices being concatenated are not consistent."
madhan ravi
madhan ravi 2019 年 6 月 8 日
編集済み: madhan ravi 2019 年 6 月 8 日
When yourcell is of size 8 x 11 each containing 32 x 32 double , haven’t got an error unless you’re doing something strange.
Aniket Kumar
Aniket Kumar 2019 年 6 月 8 日
Thanks a lot that solved my querry!

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by