How do i combine multiple cells into one
    9 views (last 30 days)
  
       Show older comments
    
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 Comments
Answers (2)
  Chunru
      
      
 on 13 Jul 2021
        c1 = {rand(2), rand(2)}
c2 = {rand(2), rand(2)}
c3 = {rand(2), rand(2)}
c =[c1; c2; c3]
0 Comments
See Also
Categories
				Find more on Logical in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
