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
Stephen23 2018 年 4 月 25 日

0 投票

str = '';
while ~strcmp(str,'stop')
...
str = ...
end

カテゴリ

ヘルプ センター および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

質問済み:

2018 年 4 月 25 日

回答済み:

2018 年 4 月 25 日

Community Treasure Hunt

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

Start Hunting!

Translated by