版本:3.1.3
运行以下示例:
c = input('Please enter a case: ');
switch c
case 0
disp('This is the first case.')
case 1
disp('Output result is 1')
case 2
A = rand(3)
otherwise
disp('Other calculation expressions')
end
执行出现以下错误提示:
Please enter a case: 1
ans =
1
错误使用函数 disp
输出参数过多。
错误位于文件 C:\Users...\switch_demo.m (第 7 行)
disp('Output result is 1')
程序执行中显示有错误信息,请反馈给开发团队。
在命令行使用disp函数是正常的