for loop not stopping

2 vues (au cours des 30 derniers jours)
Patrick Crosby
Patrick Crosby le 17 Avr 2020
Commenté : Patrick Crosby le 17 Avr 2020
Why is my for loop not stopping? I have tried both break and end and thought it would end if I added an increment but it does not.
string = "HOWDY";
count = 0;
for count = 1:strlength(string)
count = count + 1
end

Réponse acceptée

David Hill
David Hill le 17 Avr 2020
string = "HOWDY";
c = 0;
for count = 1:strlength(string)
c = c + 1;%should never mess with the loop variable inside the loop
end
  1 commentaire
Patrick Crosby
Patrick Crosby le 17 Avr 2020
Thank you!

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