Plot not shown in for loop
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mahmoud Abbas
le 8 Mar 2022
Réponse apportée : Torsten
le 8 Mar 2022
The plot is not appearing for this simple loop
for i=0:0.01:1
if i<0.5
M=1
elseif i<0.7
M=0.5
else
M=0
end
plot(i,M,'LineWidth',2)
hold on
end
0 commentaires
Réponse acceptée
Torsten
le 8 Mar 2022
iter = 0;
for i=0:0.01:1
iter = iter + 1;
I(iter) = i;
if i<0.5
M(iter)=1
elseif i<0.7
M(iter)=0.5
else
M(iter)=0
end
end
plot(I,M,'LineWidth',2)
0 commentaires
Plus de réponses (1)
Jan
le 8 Mar 2022
Exactly. Give Matlab a chance to update the output by inserting the command:
drawnow
inside the loop.
Voir également
Catégories
En savoir plus sur Graphics Performance dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!