I wanted to combine these cells into a table.

1 回表示 (過去 30 日間)
CalebJones
CalebJones 2019 年 10 月 25 日
コメント済み: CalebJones 2019 年 10 月 25 日
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 Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by