While Loops - TextBook Example
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Maroulator
le 9 Août 2014
Réponse apportée : Matthew Eicholtz
le 9 Août 2014
I have the following code from my textbook:
ires=2;
while ires<=200
ires=ires^2;
end
I estimate that the above code will run 14 times and give me a final value of 225 for variable ires. When I run the code in MatLab, however, I get 15 runs and a final value of 256 for variable ires. Could anyone provide some insight as to why this may be the case?
0 commentaires
Réponse acceptée
Plus de réponses (2)
Azzi Abdelmalek
le 9 Août 2014
You can check how many times your while loop runs
ires=2;
k=0;
while ires<=200
k=k+1
ires=ires^2;
end
In your case k=3 and not 14
0 commentaires
Voir également
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!