I wish to change the name of col_1 to col_2, col_3....col_N for each value of 'j'. Could anyone suggest on how to handle this.? The reason why I wish to do this way is that size of col_i changes for different j. Any valuable suggestions and corrections are highly appreciated.
for j=1:N
for i=1:dum+1
col_1(i,1)=x;
col_1(i,2)=y;
end
end