Loop. Do while loop in matlab

19 vues (au cours des 30 derniers jours)
armin m
armin m le 4 Déc 2021
Modifié(e) : armin m le 4 Déc 2021
Hi. I have wrote a code which contain main part like below.
Clc
Close all
.
.
.
While ...
.
.
.
End
I wanna force this loop to end in 7 iteration. I do this.
Clc
Close all
A=0
While A<8
While ...
.A=A+1
.
.
End
End
But it does not works. Can any body help?

Réponse acceptée

Voss
Voss le 4 Déc 2021
So you have some code like this, right?
A = 0;
while A < 8
% do something
A = A+1;
end
This loop will iterate 8 times (for values of A going from 0 to 7, inclusive). Is this what you observe? If not, what do you observe?
  3 commentaires
Voss
Voss le 4 Déc 2021
OK. How about this then?
% condition = <some unspecified condition>
A = 0;
while condition && A < 7
% do something
A = A+1;
end
armin m
armin m le 4 Déc 2021
Modifié(e) : armin m le 4 Déc 2021
Did it. thankssss

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

Community Treasure Hunt

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

Start Hunting!

Translated by