How to concatenate elements of cell array

Dear All,
I have what I expect is a simple problem that I would be most grateful for some help with.
I have a 333x1 cell array. Each of the 333 elements are a numeric array, ranging in dimensions from 49x332 to 49X1.
I would like to concatenate all the elements so that I have a single 49x55611 array.
Many thanks for any advice,
Rob

 Accepted Answer

Stephen23
Stephen23 on 12 May 2017
Edited: Stephen23 on 12 May 2017
Where C is your cell array:
[C{:}]
or
horzcat(C{:})
For more info on how this works, read about comma separated lists:

Categories

Asked:

on 12 May 2017

Commented:

on 29 Aug 2024

Community Treasure Hunt

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

Start Hunting!