Combine Array from different cell
조회 수: 33 (최근 30일)
이전 댓글 표시
Hello, i am still new to Matlab and coding. Currently im stuck in how to combine these array from different cells into one cell.
Each cell array has different number of rows!
Can I combine alltogether into one cell. If yes, is there any efficient way to do this?
Thank you in Advance.

댓글 수: 0
답변 (2개)
madhan ravi
2019년 3월 18일
편집: madhan ravi
2019년 3월 18일
{cat(1,yourcell{:})}
%or
{vertcat(yourcell{:})}
댓글 수: 0
Jos (10584)
2019년 3월 18일
This is called concatenation. See the documentation of the function CAT. Matlab allows you to concatenate a bunch of column vectors into a single column (or row vectors into a single row), even if they have different lengths.
v1 = [1 ; 2 ; 3] ;
v2 = [5 ; 6] ;
Y = cat(1, v1, v2) % a single column vector
However, concatenating column vectors if different lengths into multiple columns is not allowed, because the resulting array is not rectangular. Somehow you need to fill up the empty spaces. This is exactly what my function PADCAT does:
% cat(2,v1,v2) % error!
M = padcat(v1, v2)
When your vectors are stored in a cell array, as in your question, using comma-separated list expansion makes it quite easy.
C = { [1 ; 2 ; 3], 4, [5 ; 6 ; 7 ; 8 ; 9], [10 ; 11] }
M = padcat(C{:})
PADCAT can be downloaded from the File Exchange: https://uk.mathworks.com/matlabcentral/fileexchange/22909-padcat
댓글 수: 1
jenifer Ask
2019년 12월 28일
I asked my question in :
can you help me pleas...
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!