for loop not stopping

조회 수: 4 (최근 30일)
Patrick Crosby
Patrick Crosby 2020년 4월 17일
댓글: Patrick Crosby 2020년 4월 17일
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

채택된 답변

David Hill
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
  댓글 수: 1
Patrick Crosby
Patrick Crosby 2020년 4월 17일
Thank you!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by