Extract a Bode Plot from a filter

37 vues (au cours des 30 derniers jours)
Karl Rueth
Karl Rueth le 28 Mai 2018
Commenté : Karl Rueth le 28 Mai 2018
I have this low pass filter and need to extract the bode plot of it.
[b,a]=butter(3,50/1000,'low');
freqz function isn't working, possibly because it's not a digital filter. Could someone guide me on how I can do it.
  2 commentaires
Geoff Hayes
Geoff Hayes le 28 Mai 2018
Karl - please clarify what you mean by freqz function isn't working. Are there errors or something else?
Karl Rueth
Karl Rueth le 28 Mai 2018
Yes it was, Freqs has to be used for analogue filters .. Thanks to Star Rider

Connectez-vous pour commenter.

Réponse acceptée

Star Strider
Star Strider le 28 Mai 2018
Use the Signal Processing Toolbox freqs (link) function for continuous filters, or freqz (linked to at the end of that documentation) for discrete filters. You can also get the amplitude and frequency outputs.
[b,a]=butter(3,50/1000,'low');
figure
freqs(b, a)
  2 commentaires
Karl Rueth
Karl Rueth le 28 Mai 2018
Thanks .. It worked
Star Strider
Star Strider le 28 Mai 2018
As always, my pleasure.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by