示例代碼中這一段
% p(x) = a0+a1*x + ... +a7 *x a=0:n-1; ...... disp(f(1) - s )
包括代碼和注釋似乎都有問題,估計(jì)是從多項(xiàng)式擬合的示例中復(fù)制過來忘記更改了,請(qǐng)更正。
Version:3.01
加載插件后,插件中的函數(shù)似乎不能Tab自動(dòng)補(bǔ)全
例如加載fft插件后,輸入f然后tab就無法補(bǔ)全fft
有無辦法解決?
版本: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ù)是正常的