我試圖糾正下面的代碼,但沒有成功內矩陣尺寸.. Matlab的說:錯誤在MATLAB
Error using *
Inner matrix dimensions must agree.
Error in
Atten = a*l*f;
下面是代碼
a=[0.6 1.89 4.1 0.9 0.8 3];
l=[0.5 0.5 0.5 0.5 0.5 0.5];
f=[1000000:4000000:21000000];
Atten = a*l*f;
plot(f,Atten)
我即使l=[0.4];
嘗試但它沒有工作 如何更正代碼?
謝謝