Bode 3 dB down point

15 visualizzazioni (ultimi 30 giorni)
Hector Zepeda
Hector Zepeda il 25 Mar 2021
Risposto: Star Strider il 26 Mar 2021
I need to get the frequency of the 3dB down point from the appearing graphs, however, I am not too sure on how to get it.
clc;
R1 = 9e3;
R2 = 1e3;
C = 0.22e-6;
Z = 1+C*R2;
sys = tf([C*R2 1],[C*R1 Z]);
bode(sys)

Risposte (1)

Star Strider
Star Strider il 26 Mar 2021
Use the bandwidth funciton:
fb = bandwidth(sys)
producing:
fb =
510.290495078091
It does not work al all objects, however it works here.

Community Treasure Hunt

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

Start Hunting!

Translated by