MATLAB: How to write all data of a cell array into one big list

cell arrayrangesearch

Hello,
I'm searching for a function or fast way to write all data of a cell array into one big list.
I receive with the function "rangesearch" a cell array with different content like this:
1×17 double
1×14 double
1×11 double
1×21 double
Now I want all this data in one big list of 1×63 elements.
Now I achieve this with a for-loop, but is there an existing function or faster way than mine?
Thanks in advance

Best Answer

If A is your cell array, you might try:
[A{:}]