How to modify Loop variable inside the loop body
13 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Vatsal Gupta
il 30 Giu 2018
Commentato: Douglas Anderson
il 16 Gen 2019
for i=1:10
if randi(10)==3
i=i-1;
end
end
In the above code, i must get reduced by 1 whenever the if condition comes true. But it doesn't gets so. Any modifications so that loop variable i gets modified inside the loop body?
0 Commenti
Risposta accettata
Jan
il 30 Giu 2018
This does not work in a for loop, but in while:
i = 1;
while i <= 10
disp(i)
...
i = i + 1;
if randi(10) == 3
i = i-1; % Or i - 2?
end
end
2 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!