How to combine cell arrays into a uniform one

14 views (last 30 days)
Hello!
Can anybody please help me with this problem:
I have a cell array 8×1. 1 column of 8 this {100×1 double} cells. And also I have another cell array 4×1. 1 column of 4 this {100×1 double} cells. I need to join them in one clumn of 12 cells. I would think the syntax it is similar to normal arrays like joint_array=[A;B].
I was trying different ways but the best result is 2×1 cell array
{8×1 cell}
{4×1 cell}
I need to smoosh it all into one box, to become 12×1 cell array. the data in cells is same type {100×1 double}
thank you.

Accepted Answer

madhan ravi
madhan ravi on 4 Jan 2019
Edited: madhan ravi on 4 Jan 2019
C = {{1:3},{3:5}} % an example data
C = vertcat(C{:}) % combined cell array as one
vertcat(C{:}) % concatenated again to convert as a double array

More Answers (2)

KSSV
KSSV on 4 Jan 2019
Edited: KSSV on 4 Jan 2019
Read about cell2mat
C = cell(4,1) ;
C{1} = rand(10,1) ;
C{2} = rand(5,1) ;
C{3} = rand(2,1) ;
C{4} = rand(7,1) ;
iwant = cell2mat(C)

Ra Karamislo
Ra Karamislo on 4 Jan 2019
Thank you very much

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!