Convert cell array to an array, when the size of the cells is different
3 views (last 30 days)
Show older comments
Nikolas Spiliopoulos
on 4 Dec 2018
Commented: Nikolas Spiliopoulos
on 4 Dec 2018
Hi all,
I have a cell array like this A={ [0 0 0 0] ; [1 1] ;[2] }
Is it possible to convert it in an array? I tried with cell2mat but I get an error because the sizes are different
thanks
Nikolas
0 Comments
Accepted Answer
More Answers (1)
madhan ravi
on 4 Dec 2018
[A{:}] % which is eqivalent to horzcat(A{:})
3 Comments
madhan ravi
on 4 Dec 2018
Edited: madhan ravi
on 4 Dec 2018
just give an example of your desired output in the example you gave! plus how can you put them in an array when the number of columns are different??
See Also
Categories
Find more on Data Type Conversion in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!