Digital filters
Ältere Kommentare anzeigen
I am trying to build a band pass filter from .1 to 40 Hz, IIR or FIR, and then analyze it in matlab. Does anyone know reasonable parameters for this kind of filter (Fs=256). I am having trouble building one that has nice properties.
Thanks Kim
Akzeptierte Antwort
Weitere Antworten (2)
Gaurav Gupta
am 19 Jul. 2011
0 Stimmen
Use fir1 for designing filter and freqz for viewing its frequency response
1 Kommentar
Kim
am 30 Aug. 2011
Daniel Shub
am 19 Jul. 2011
Introductory DSP textbooks tend to provide formula for calculating parameters for some simple IIR filters (e.g., Butterworth). The signal processing toolbox in MATLAB provides the butter command. A first order Butterworth filter can be obtained with:
[b, a] = butter(1, [.1, 40]./128)
The parameters are: b =
0.3477 0 -0.3477
a =
1.0000 -1.3030 0.3047
3 Kommentare
Walter Roberson
am 19 Jul. 2011
Question: Is the "128" there the Nyquist frequency, Fs/2 ?
Daniel Shub
am 19 Jul. 2011
Yes, Kim said Fs=256.
Kim
am 30 Aug. 2011
Kategorien
Mehr zu Filter Analysis finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!