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

 Respuesta aceptada

David Hill
David Hill el 17 de Abr. de 2020

1 voto

string = "HOWDY";
c = 0;
for count = 1:strlength(string)
c = c + 1;%should never mess with the loop variable inside the loop
end

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 17 de Abr. de 2020

Comentada:

el 17 de Abr. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by