for loop not stopping

1 回表示 (過去 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 Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by