Using an or in a while loop.

60 views (last 30 days)
Matt Merkley
Matt Merkley on 23 Jan 2018
Edited: Stephen23 on 23 Jan 2018
I want to have an or statement in my while loop. Eventually I will be incrementing ea as well as iter. But right now it should exit out of the while loop after 100 iterations but it is continuing forever. What is wrong with the or statement? es = .01; imax = 100; iter = 0; ea = es;
while ((ea <= es )|| (iter <= imax) )
iter = iter + 1;
end
disp(iter);
  1 Comment
Stephen23
Stephen23 on 23 Jan 2018
Edited: Stephen23 on 23 Jan 2018
ea = es
means that the first part of the condition ea <= es is always true, and because of the || (or) the while condition will therefore always be true. Is that what you want?

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 23 Jan 2018
You need && for that rather than || . Your existing code does not exit the loop until both parts are false, which never happens since you do not change ea or es.

More Answers (1)

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!