示例代碼中這一段
% p(x) = a0+a1*x + ... +a7 *x a=0:n-1; ...... disp(f(1) - s )
包括代碼和注釋似乎都有問題,估計是從多項式擬合的示例中復(fù)制過來忘記更改了,請更正。
Version:3.01
版本: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
執(zhí)行出現(xiàn)以下錯誤提示:
Please enter a case: 1
ans =
1
錯誤使用函數(shù) disp
輸出參數(shù)過多。
錯誤位于文件 C:\Users...\switch_demo.m (第 7 行)
disp('Output result is 1')
程序執(zhí)行中顯示有錯誤信息,請反饋給開發(fā)團隊。
在命令行使用disp函數(shù)是正常的