変数に格納された値の種類によって分岐処理を行うには、次のように switch
と case
で分岐させます。
val = 2
switch val
case 1
disp('one')
case 2
disp('two')
otherwise
disp('other')
endswitch
下記のように、複数のパターンを1つの case
でまとめて処理することもできます。
yesno = 'yes';
switch yesno
case {'Yes' 'yes' 'YES' 'y' 'Y'}
value = 1;
case {'No' 'no' 'NO' 'n' 'N'}
value = 0;
otherwise
error ('invalid value');
endswitch
逆に、下記のように、複数の case
を連続して記述する方法はうまくいかないので注意してください(値が 1 のケースは何も処理しないという意味になってしまいます)。