I wanted to combine these cells into a table.

1 次查看(过去 30 天)
I wanted to perform horzcat to this.

采纳的回答

galaxy
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 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by