Combine Array from different cell

21 visualizzazioni (ultimi 30 giorni)
Amirul Azman
Amirul Azman il 18 Mar 2019
Commentato: jenifer Ask il 28 Dic 2019
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.
Sketch.png

Risposte (2)

madhan ravi
madhan ravi il 18 Mar 2019
Modificato: madhan ravi il 18 Mar 2019
{cat(1,yourcell{:})}
%or
{vertcat(yourcell{:})}

Jos (10584)
Jos (10584) il 18 Mar 2019
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

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by