forループを用いた場合のテーブルの結合

forループ内で作成した次元の同じテーブルをすべて結合して1つのテーブルにするにはどうすればよいでしょうか。
ループ内で作成するテーブルはそれぞれ2000行1列のもので、ループの回数を列にして結合したく思っております。

回答 (1 件)

madhan ravi
madhan ravi 2020 年 8 月 24 日

1 投票

c = cell(2, 1); % 2 represents no of tables
for k = 1:numel(c)
c{k} = table(rand(10, 1), 'VariableNames', {sprintf('N%d', k)});
end
[c{:}] % an example to horizontaly concatenate tables created in a loop

カテゴリ

ヘルプ センター および File Exchangeループと条件付きステートメント についてさらに検索

製品

リリース

R2020a

質問済み:

2020 年 8 月 24 日

回答済み:

2020 年 8 月 24 日

Community Treasure Hunt

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

Start Hunting!