How to keep looping a switch statement?
古いコメントを表示
How can I keep looping a switch statement until the user types the word "stop"?
I want the switch to keep looping through the cases until the user types "stop", to which the loop will break.
回答 (1 件)
Stephen23
2018 年 4 月 25 日
str = '';
while ~strcmp(str,'stop')
...
str = ...
end
カテゴリ
ヘルプ センター および 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!