for loop not stopping
2 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
David Hill
2020-4-17
string = "HOWDY";
c = 0;
for count = 1:strlength(string)
c = c + 1;%should never mess with the loop variable inside the loop
end
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!