How do i combine multiple cells into one
9 次查看(过去 30 天)
显示 更早的评论
I have 3 cells each containting three 20x60 matrices
cell_1 = { 20x60, 20x60 , 20x60 }
...
cell_3= { 20x60, 20x60 , 20x60 }
I would like to stack them on top of each other
cell_1
cell_2
cell_3
so that i obtain final_cell =3 x 3 cell
0 个评论
回答(2 个)
Chunru
2021-7-13
c1 = {rand(2), rand(2)}
c2 = {rand(2), rand(2)}
c3 = {rand(2), rand(2)}
c =[c1; c2; c3]
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!