Azzera filtri
Azzera filtri

exiting if condition and for loop?

118 visualizzazioni (ultimi 30 giorni)
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

Risposta accettata

per isakson
per isakson il 18 Lug 2015
Try
for i=1:100
if condition
operations;
else
break
end
end

Più risposte (0)

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!

Translated by