concatenate cell array of cell arrays
Show older comments
I have got this cell variable with 10 cell arrays. It is possible to horizontally concatenate them if the dimension is consistent but if not it gives me an error. How do i concatenate this cell arrays of unequal length?

Accepted Answer
More Answers (1)
Rishabh Rathore
on 7 Jun 2018
Edited: Rishabh Rathore
on 7 Jun 2018
0 votes
I'm assuming you want to retain the data of one cell array as a column.
A work around could be the following
- Find the length of the longest cell array
- append the empty cell to all the smaller cell arrays
- finally concatenate them, you may use horzcat for horizontal concatenation.
Categories
Find more on Creating and Concatenating Matrices 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!