exiting a loop

1 vue (au cours des 30 derniers jours)
Bahareh
Bahareh le 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.

Réponse acceptée

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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by