Only one plot when expecting multiple
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
Why do I get only plot if I use this script? I try to get one plot for the value of a at the beginning
while a>0
while z > 0
plot(x{1,z}(:,1),y{a,z}(:,1))
hold on
z = z-1;
end
hold off
z = B;
a = a-1;
end
Antworten (1)
KSSV
am 12 Apr. 2018
0 Stimmen
Remove hold off from the loop.
1 Kommentar
Brecht Leenmans
am 12 Apr. 2018
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!