Bulk concatenation of cell array contents (without looping)?
Show older comments
Hi,
I have a 1x4 cell whose elements are all 1x40 cells. Each of the elements of the 1x40 cells is a 1000x128 array of doubles.
Is there a way to concatenate the contents of the elements in the 1x40 cells into a 40000x128 array of doubles without looping through the elements individually?
Thanks, Alex
Accepted Answer
More Answers (2)
Ramis Rafay
on 23 Jul 2017
0 votes
I think this will work for any given number of elements without looping
stackedarrays = vertcat(mycell{:,:})
1 Comment
theblueeyeswhitedragon
on 27 Jun 2018
Edited: theblueeyeswhitedragon
on 27 Jun 2018
This gives you back a mxn matrix, which you could easily obtain by using cell2mat().
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!