6. matlab中case語句的使用
阿新 • • 發佈:2019-02-17
(1)單個的就如同C語言中的一樣,不過在和switch使用的時候case後不用接:
n = input('Enter a number: ');
switch n
case -1
disp('negative one')
case 0
disp('zero')
case 1
disp('positive one')
otherwise
disp('other value')
end
(2)多個的使用就用花括號
x = [12 64 24];
plottype = 'pie3';
switch plottype
case 'bar'
bar(x)
title('Bar Graph')
case {'pie','pie3'}
pie3(x)
title('Pie Chart')
otherwise
warning('Unexpected plot type. No plot created.')
end