What is the possible code that can be used to return to primary while?
Show older comments
hi, I have this code ;
while(true) % primary while(step 1)
while(true)
if (condition)
statement
...
statement
continue
end
end
while(true)
if (condition)
statement
...
statement
(??) % Here, I want to return to primary while (i.e step 1)
else
end
end
What is the possible code that can be used at (??) mark?
Answers (1)
Les Beckham
on 23 Dec 2016
0 votes
Use 'break'
2 Comments
arwa
on 23 Dec 2016
Image Analyst
on 23 Dec 2016
but that won't fix your second while. That loop will never exist because you don't have a break in it, so you'll never even get to the third while. A "continue" merely tosses control to the bottom of the while loop but let's it continue, forever in your case. You should always have a failsafe in your loop conditions to prevent infinite loops.
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!