how to convert cell to array
Show older comments
I have 1 x 7 cell. Each cell has 20000 x 1 array. How do I take 1st column and 3rd 4th 5 7 7 column ? So result becomes 20000 x 5 array ?
Accepted Answer
More Answers (1)
Jan
on 5 Dec 2016
out = cat(2, v{[1 3 4 5 7]});
Categories
Find more on Data Types 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!