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 个)
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!