for loop not stopping
4 views (last 30 days)
Show older comments
Patrick Crosby
on 17 Apr 2020
Commented: Patrick Crosby
on 17 Apr 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
0 Comments
Accepted Answer
David Hill
on 17 Apr 2020
string = "HOWDY";
c = 0;
for count = 1:strlength(string)
c = c + 1;%should never mess with the loop variable inside the loop
end
More Answers (0)
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!