Matrix dimensions must agree!
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
Hi guys,Am a newbie to Matlab and been having a clitch here. Any help will be highly appreciated.I am trying to plot this simple data but i am getting an error ('Matrix dimensions must agree'). Thanks
Harry
function[]=SRC() clc;clear display('Provide the values of Qs and ranges of normalised frequency fn') Qs= input('Please enter the value of Qe: ' );
fn=-10:0.5:10;
ga=(1/(1+Qs^2*(fn-1/fn)));
figure(1)
plot(fn,ga);title('SRC DC characterictics');xlabel('Normalised frequency');ylabel('Gain')
end
1 件のコメント
Wayne King
2012 年 12 月 3 日
Please give us enough information to reproduce an error, what is a reasonable input for Qs?
回答 (1 件)
Wayne King
2012 年 12 月 3 日
編集済み: Wayne King
2012 年 12 月 3 日
It may be as simple a matter of doing
ga=(1./(1+Qs^2*(fn-1./fn)));
but you should give us the value(s) of Qs so we can actually reproduce the error
0 件のコメント
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!