switch
古いコメントを表示
any good example of a 'switch' command , actually I need to make a code which when executed give me a option of selection and by pressing it it will execute that. Any Help in this .cheers
回答 (2 件)
Honglei Chen
2012 年 2 月 27 日
There are several examples in the documentation
doc switch
Jan
2012 年 2 月 27 日
0 投票
5 件のコメント
Nasir Qazi
2012 年 2 月 27 日
Nasir Qazi
2012 年 2 月 27 日
Jiro Doke
2012 年 2 月 27 日
Did you see the examples on the links that Jan provided (for switch and menu)?
Nasir Qazi
2012 年 2 月 27 日
Jiro Doke
2012 年 2 月 27 日
Just combined the first examples from each function...
choice = menu('Choose a color','Red','Blue','Green');
switch choice
case 1
disp('You pressed Red');
case 2
disp('You pressed Blue');
case 3
disp('You pressed Green');
otherwise
disp('You closed the window');
end
カテゴリ
ヘルプ センター および File Exchange で Programming についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!