版本:3.1.3
運(yùn)行以下示例:
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
執(zhí)行出現(xiàn)以下錯(cuò)誤提示:
Please enter a case: 1
ans =
1
錯(cuò)誤使用函數(shù) disp
輸出參數(shù)過多。
錯(cuò)誤位于文件 C:\Users...\switch_demo.m (第 7 行)
disp('Output result is 1')
程序執(zhí)行中顯示有錯(cuò)誤信息,請(qǐng)反饋給開發(fā)團(tuán)隊(duì)。
在命令行使用disp函數(shù)是正常的