3db bandwidth of a low pass filter
Show older comments
Hi, I need to generate a low pass filter and find its 3db values. Do we have any matlab command to find 3db bandwidth? If so, can I plot it?
Accepted Answer
More Answers (2)
Wayne King
on 22 Sep 2011
Hi, one way is to use an IIR design in MATLAB which uses the 3-dB point directly in the design of the filter. (FIR filters use 6-dB points).
For example:
d = fdesign.lowpass('N,F3dB',10,0.1);
Hd = design(d,'butter');
fvtool(Hd);
If you have the DSP System Toolbox installed, you are able to call the measure() method on Hd
measure(Hd)
Hope that helps,
Wayne
Satish reddy Kotamreddy
on 6 Dec 2017
0 votes
Hi i need matlab script for operational trans conductance amplifier lowapass with 3db frequency of 1mhz
Categories
Find more on Filter Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!