i have the following code:
I=0;
L=0;
for i=1:20
m=[I;L];
hold on
plot(1:20,m(1:2),'*');
I=I+1;
L=5+I;
end
The purpose of this code is in the beggining of each one of the 20 iterations, the table m, to change the values. after this part i want to print the I,L with different plot in the same figure.After that there is code which change again the values of I,L,M. The result i want to be a plot for each one of the I,L.But i don't know how to do this. Any ideas?