Create a 4-pole, 300-6000HZ bandpass butterworth filter?

4 次查看(过去 30 天)
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!

采纳的回答

Wayne King
Wayne King 2012-7-16
编辑:Wayne King 2012-7-17
If you want 4 poles and you have a bandpass filter, then you have to specify the order as 2. Also to convert from normalized frequency you divide by Fs/2 where Fs is the sampling frequency, not by Fs.
I'll assume the sampling rate is 20 kHz, but you have to specify it correctly.
Fs = 20000;
[B,A] = butter(2,[300 6000]/(Fs/2));
% view magnitude response
fvtool(B,A,'Fs',Fs)
figure;
% view pole-zero plot
zplane(B,A)
  1 个评论
Mayank Lakhani
Mayank Lakhani 2015-6-8
hi there,
how to add signal in the fv tool. suppose my output signal is y = filter(B, A, x); than how to use fv tool?

请先登录,再进行评论。

更多回答(2 个)

Matt Kindig
Matt Kindig 2012-7-16
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 个评论
Nick
Nick 2012-7-16
Well I currently use [A,B] = butter(10,0.2)
Does this mean this is a 10-pole filter? And does what would that 0.2 mean?
Ryan
Ryan 2012-7-16
编辑:Ryan 2012-7-16
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?

请先登录,再进行评论。


Ryan G
Ryan G 2012-7-16
编辑:Ryan G 2012-7-16
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.

类别

Help CenterFile Exchange 中查找有关 Digital Filter Analysis 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by