I wanted to combine these cells into a table.
1 次查看(过去 30 天)
显示 更早的评论
I wanted to perform horzcat to this.
0 个评论
采纳的回答
galaxy
2019-10-25
Do it as following:
load('matlab.mat');
out = cell2mat(new_raw(1,1));
for i=2:length(new_raw)
out = horzcat(out, cell2mat(new_raw(1,i)));
end
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!