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!