Using an or in a while loop.
78 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Matt Merkley
el 23 de En. de 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 comentario
Respuesta aceptada
Walter Roberson
el 23 de En. de 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.
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!