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
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!