Using switch-case. Return to beginning of switch-case statement
3 次查看(过去 30 天)
显示 更早的评论
Essentially, I'd like the user to input a number 0-3.
i.e.
A = input ('Enter a number (0-3)');
switch A case 0 %Do something case 1 %Do something else case 2 %Do something else case 3 %Do something else otherwise %Invalid number.
end
So, in the otherwise statement, how would I go about returning to the beginning of the switch? So that one would not have to run the program again?
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!