Matrix dimensions must agree!
Info
This question is closed. Reopen it to edit or answer.
Show older comments
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 Comment
Wayne King
on 3 Dec 2012
Please give us enough information to reproduce an error, what is a reasonable input for Qs?
Answers (1)
Wayne King
on 3 Dec 2012
Edited: Wayne King
on 3 Dec 2012
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
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!