How to plot frequency vs gain for a filter?

Click For Summary
To plot frequency versus gain for a filter, understanding the transfer function H(z) is essential, where z represents the frequency variable in digital filters. The user seeks to create a program that allows for interactive manipulation of parameters like center frequency, gain, and bandwidth. Complex arithmetic is typically used for plotting frequency responses, and while tools like Matlab simplify this process, programming in C# or Python is also feasible. Resources such as Bode plot references and existing applications can provide guidance on implementing the desired functionality. The goal is to enable users to visualize and adjust filter characteristics dynamically.
trip6
Messages
6
Reaction score
0
Hello,

I am trying to understand how this graph http://en.wikipedia.org/wiki/File:Bandwidth_2.svg
gets plotted. My goal is to write a small program that takes the center frequency/bandwidth and a (cut/boost) gain values and plot the curve.

I initially assumed, all I needed to find was an equation of gain in terms of frequency to plot it. I have been searching for a few weeks now and I keep running into transfer functions and many different types of them. But I don't understand how this translates into a gain(yaxis) vs freq(xaxis) plot.

For example, I found the following equation at http://www.musicdsp.org/files/Audio-EQ-Cookbook.txt

b0 + b1*z^-1 + b2*z^-2
H(z) = ------------------------ (Eq 1)
a0 + a1*z^-1 + a2*z^-2


the a0,a1,a2,b0,b1,b2 are calculated in terms of frequency/gain/bandwidth. On plotting H(z) I get something that looks like a bandpass filter curve but what does H(z) and z represent?

I don't have an electrical engineering/math background but am really interested in understanding how this bandpass curve gets drawn. Any advice on how to go about this would be greatly appreciated. Thanks!
 
Engineering news on Phys.org
What programming language do you intend to use to write your plotting program?

The function H(z) is simply the transfer function itself. The z is the frequency variable. The symbol z is customarily used for digital filters. For analog filters, it's customary to use the variable s, so your transfer function might be denoted H(s).

Do you understand complex arithmetic? The plotting of frequency responses from given transfer functions is most conveniently done using complex arithmetic.

It is possible to convert typical transfer functions to a form that doesn't involve complex arithmetic, but they then become very much more complicated.
 
Thanks for the response. I have done complex arithmetic in college, but have never found a use for it since. I don't mind dusting out the cobwebs if it makes plotting the curve simpler. I am just not very sure where to start.

As to the language, I would use C# or python. I have seen audio apps where the user interface allows graphical manipulation of the wave by picking a center frequency, setting a db level and the pass band. I would like to do something like that.
 
Have a look at this:

http://jegyzet.sth.sze.hu/ftp/!BSc/Szabalyozastechnika/BodePl.pdf

This reference should help a lot.

Usually one uses an application like Matlab to do these kind of plots. It has built-in functions for the purpose. It certainly can be done in C# or Python, but it won't be as easy.

Here is a program to do Bode plots. I don't know if the author's source code is available, but maybe you can contact him about it.

http://www.bode.cg.yu/

Part of your problem beyond just learning how to do the plots will be how to get the transfer function for your desired filter with explicit parameters for center frequency/bandwidth and (cut/boost) gain values.
 
Last edited by a moderator:
The Electrician said:
Have a look at this:

http://jegyzet.sth.sze.hu/ftp/!BSc/Szabalyozastechnika/BodePl.pdf

Thanks for the pdf. Very useful though its taking a while to fully digest...

Part of your problem beyond just learning how to do the plots will be how to get the transfer function for your desired filter with explicit parameters for center frequency/bandwidth and (cut/boost) gain values.

I don't really have a "desired filter". I really just want to provide an (interactive) visualization, where the user picks a center frequency, chooses to cut or boost gain and then sets a pass band. Should be basically able to manipulate the curve through this interface.
 
Last edited by a moderator:
Thread 'I thought it was only Amazon that sold unsafe junk'
I grabbed an under cabinet LED light today at a big box store. Nothing special. 18 inches in length and made to plug several lights together. Here is a pic of the power cord: The drawing on the box led me to believe that it would accept a standard IEC cord which surprised me. But it's a variation of it. I didn't try it, but I would assume you could plug a standard IEC cord into this and have a double male cord AKA suicide cord. And to boot, it's likely going to reverse the hot and...

Similar threads

Replies
3
Views
4K
  • · Replies 4 ·
Replies
4
Views
9K
Replies
4
Views
4K
Replies
3
Views
2K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 9 ·
Replies
9
Views
5K
  • · Replies 8 ·
Replies
8
Views
3K
Replies
7
Views
4K
Replies
2
Views
1K