How to merge a cell 2x60 into 1x60?
2 views (last 30 days)
Show older comments
0 Comments
Accepted Answer
Guillaume
on 10 Aug 2018
One possible way:
newcellarray = cellfun(@(column) cell2mat(column), num2cell(yourcellarray, 1), 'UniformOutput', false);
More Answers (0)
See Also
Categories
Find more on Signal Processing Toolbox 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!