Effacer les filtres
Effacer les filtres

Does the bode function automatically converts the vector points into decibels?

6 vues (au cours des 30 derniers jours)
Jennifer
Jennifer le 15 Oct 2013
Commenté : Azzi Abdelmalek le 15 Oct 2013
I already calculated the transfer function (Vout/Vin) and I need to plot it on in a bode plot. Would I have to do the manual calculations to change it to decibels or does the bode function automatically do that?

Réponses (1)

Carla
Carla le 15 Oct 2013
Modifié(e) : Carla le 15 Oct 2013
The bode function of Control System Toolbox will plot the frequency response of a transfer function in dB. The function can also return numerical data of the magnitude of the response, and that it returns in absolute units, not dB. So, for example:
% create transfer function
H = tf([1 0.1 7.5],[1 0.12 9 0 0]);
% plot the frequency response - not the magnitude is in dB
bode(H)
% extract the magnitude data
[mag,phase,freqs]= bode(H);
% mag contains the responses at freqs, expressed in absolute units.
% convert to dB
magdb = 20*log10(mag);
See the reference page for more details.
doc bode
  1 commentaire
Azzi Abdelmalek
Azzi Abdelmalek le 15 Oct 2013
H = tf(100,[1 10]);
[mag,phase,freqs]= bode(H)
figure
subplot(2,1,1),plot(log10(freqs),20*log10(squeeze(mag)))
subplot(2,1,2),plot(log10(freqs),squeeze(phase))

Connectez-vous pour commenter.

Catégories

En savoir plus sur Get Started with Control System Toolbox dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by