For loop within a for loop doesn't quite work!
Ältere Kommentare anzeigen
I have this for loop inside a for loop which I've created to develop a scatter plot and it almost works, except after the first iteration it seems to only be looping back via the second loop and ignoring the first one each time. How do I prevent that and make sure it loops with the first, then second, then first then second etc?
fig = figure();
x = T2{:,10};
for i = 2:9
y = T2{:,i};
for j = 1:6;
axj = subplot(2,3,j);
scatter(axj,x,y,'filled');
end;
end;
Thank you!!
Antworten (1)
Walter Roberson
am 15 Okt. 2015
0 Stimmen
You need "hold on" after the first scatter() call
2 Kommentare
Olivia Milton-thompson
am 15 Okt. 2015
Olivia Milton-thompson
am 15 Okt. 2015
Bearbeitet: Olivia Milton-thompson
am 15 Okt. 2015
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!