MATLAB: I have loop and i need to Create a table for each loop

for looplooptable

i have loop and i need to Create a table for each loop all the table have number to know what the table

Best Answer

Use indexing rather than numbering the variables:
N = the number of tables that you want
C = cell(1,N);
for k = 1:N
C{k} = table(..);
end
Probably you should just use one table, and add a column with an appropriate distinguishing variable.