How can I end a for loop with an if or while loop

 Accepted Answer

Hello,
Yes you can end a for loop early using break,
for N = 1:n
% Do something
if (some condition is met)
break
end
end
This will end the for loop early when the condition is met.
Hope this helps!

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Asked:

on 11 Feb 2017

Edited:

on 11 Feb 2017

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!