how to set the maximum iteration while looping

m=50;
c=10;
tol=m-c;
while tol>0
c=c+5;
tol=m-c;
if tol<0;
break
else
disp 'amacam?'
end
disp ('Table for iteration');disp (' m c tol ');
format shortG
disp ([m',c',tol',]);
end
**I want to stop the looping at 5th iteration wihout considering the value of tol. Can somebody help?

 Respuesta aceptada

Walter Roberson
Walter Roberson el 6 de Oct. de 2019
Before the loop:
iter = 0;
Then change the while to
while iter <= 5 && tol > 0
iter = iter + 1;

3 comentarios

SITI AISHAH
SITI AISHAH el 6 de Oct. de 2019
Thanks Walter. This is so much helpful!
Walter Roberson
Walter Roberson el 6 de Oct. de 2019
You should think through whether you want to test iter <= 5 or iter < 5
SITI AISHAH
SITI AISHAH el 6 de Oct. de 2019
Alright

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 6 de Oct. de 2019

Comentada:

el 6 de Oct. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by