Making a butterworth filter

3 ビュー (過去 30 日間)
Mark
Mark 2011 年 9 月 23 日
Hi,
Any suggestions on how to make a filter in Matlab using the following settings:
Butterworth Zero Phase Filters: Low Cutoff: 1.0000 Hz, Time constant 0.1592s, 24 dB/oct High Cutoff: 30.0000 Hz, 24 dB/oct
Thanks, Mark

採用された回答

Wayne King
Wayne King 2011 年 9 月 23 日
Hi, You won't be able to make a zero-phase Butterworth filter, but you can implement zerophase filtering with filtfilt. You can use fdesign.lowpass and use the design method 'butter' to design your filter and then use filtfilt().
  3 件のコメント
Wayne King
Wayne King 2011 年 9 月 23 日
Jan, Just out of curiousity have you looked at the performance of filtfilt since it was overhauled in R2011a? The major change was that it now accepts IIR filter objects in biquad form, but there should be some performance enhancements as well.
Jan
Jan 2011 年 9 月 23 日
@Wayne: Unfortuanely I do not have a modern version and therefore I've not tested it, but I'd be very glad if somebody could run the included test and send me a copy of the output...
FILTER is parallelized now, but my Mex is not currently. The old FILTFILT suffers from creating 5 temporary copies of the input signal, while the replacement needs just 2 copies. I'm still surprised, that this is 5 to 20 times faster - compared to 2009a.

サインインしてコメントする。

その他の回答 (1 件)

Michael Leung
Michael Leung 2011 年 9 月 23 日
I believe that the butter function is able to do 0th order filters. http://www.mathworks.com/help/toolbox/signal/ref/butter.html
  1 件のコメント
Wayne King
Wayne King 2011 年 9 月 23 日
Hi Michael, That is not correct. The order must be positive. A 0th order IIR filter would mean that the output is equal to the input.

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by