exiting a loop

7 views (last 30 days)
Bahareh
Bahareh on 29 Oct 2011
Hello all,
I have a while loop in which
while abs(a-b)>=delta
rest of code
end
Sometimes the condition of this while loop is not satisfied and my program gets stuck in the loop; is there any way that I can specify the number of iterations such that after this specified value, my program exits the loop?
Many thanks in advance.

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 29 Oct 2011
k = 0;
while abs(a-b)>=delta | k < 1e3
....
k = k + 1;
end
  1 Comment
Bahareh
Bahareh on 29 Oct 2011
Thanks but instead of | I put &&, then it worked.

Sign in to comment.

More Answers (0)

Categories

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

Tags

Community Treasure Hunt

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

Start Hunting!