bode() magnitude
Mostra commenti meno recenti
Hi, I Have seen the code [ mag,phase] = bode(sy s) but when i try to see the values of mag, or phase, it returns something like mag(:,:,1). What is the significance of the stuff in the brackets? How can i just get the magnitude values with respect to frequency so I can plot a 2d plot of the magnitude and frequency?
thanks
Risposta accettata
Più risposte (4)
aaa
il 2 Mag 2012
Arkadiy Turevskiy
il 2 Mag 2012
semilogx(wout,20*log10(squeeze(mag)))
gives you the same plot for magnitude as bode.
If it does not look the same, it is because the axes limits do not line up. You can customize that and other plot parameters to your liking as described here.
aaa
il 2 Mag 2012
0 voti
aaa
il 2 Mag 2012
1 Commento
Arkadiy Turevskiy
il 3 Mag 2012
win=logspace(wout(1),wout(45),100);
% replace 100 with desired number of points
[mag,phase] = bode(sys,win);
Categorie
Scopri di più su Plot Customization in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!