发布网友 发布时间:2022-04-23 15:11
共1个回答
热心网友 时间:2023-10-05 12:07
在matlab中switch是开关语句,使用格式为
switch switch_expression %选择对象
case case_expression %选择表达式
statements %执行模块
case case_expression
statements
...
otherwise
statements
end
举例如下:
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
在命令提示符下,输入数字 1。
其结果为,positive one