Create a 4-pole, 300-6000HZ bandpass butterworth filter?
Show older comments
Hi. I'm pretty new to filters. I want to design a bandpass 300-6000Hz 4-pole butterworth filter. Not sure about how to do this in matlab. I have managed to make progress in this, but I am not sure what I am doing anyway.
Would really appreciate if someone could show the code for this. Would be even more appreciative if you could explain how these filters work so I can do it on my own in the future :)
Thank you!
Accepted Answer
More Answers (2)
Matt Kindig
on 16 Jul 2012
If you have the Signal Processing Toolbox, you can use the 'butter' function.
doc butter
Also, you mention that you have made some progress in this. Can you show us the code you've done so far?
2 Comments
Nick
on 16 Jul 2012
I have never used the toolbox and don't want to steer you in the wrong direction, but from the documentation I believe this:
[B,A] = butter(4,[300 6000],'stop');
acts as a 4th order bandstop filter between the cut off frequencies 300 and 6000 HZ. This does the opposite of what you're going for, but I don't see an option on 'ftype' to select otherwise. Possibly if you don't specify 'ftype' as 'stop','high' or 'low' it will act as a pass instead of stopband?
If you look at the documentation it mentions you can define a 2 element frequency vector that you need to normalize to the sample rate of your data. Depending on the sample rate of your data you would want to implement something like this:
[b,a] = butter(4,[300 6000]/SampleRateOfData);
where the SampleRateOfData should be >6000. If you are designing a continuous time filter you could do
[b,a] = butter(4,[300 6000]/(2*pi),'s');
to design the filter in that domain.
Categories
Find more on Digital Filter Analysis in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!