How to combine cell arrays into a uniform one

14 次查看(过去 30 天)
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.

采纳的回答

madhan ravi
madhan ravi 2019-1-4
编辑:madhan ravi 2019-1-4
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

更多回答(2 个)

KSSV
KSSV 2019-1-4
编辑:KSSV 2019-1-4
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 2019-1-4
Thank you very much

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by