MATLAB switch-case-otherwise用法实例

主要注意代码格式!
​​​​​​
n = 1;

switch n
    case -1
        disp('negative one')
    case 0
        disp('zero')
    case 1
        disp('positive one')
    otherwise
        disp('other value')
end

MATLAB switch-case-otherwise用法实例_第1张图片

你可能感兴趣的:(MATLAB)