exiting if condition and for loop?
144 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Arunachalam D
le 18 Juil 2015
Modifié(e) : Stefanie Schwarz
le 4 Jan 2022
for i=1:100
if condition
operations;
else
continue
end
end
here continue will exit out of the if loop but thing is that if else statement executed it should come out of for loop. how can i do that
0 commentaires
Réponse acceptée
per isakson
le 18 Juil 2015
Try
for i=1:100
if condition
operations;
else
break
end
end
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements 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!