Borrar filtros
Borrar filtros

Making a butterworth filter

2 visualizaciones (últimos 30 días)
Mark
Mark el 23 de Sept. de 2011
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

Respuesta aceptada

Wayne King
Wayne King el 23 de Sept. de 2011
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 comentarios
Wayne King
Wayne King el 23 de Sept. de 2011
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 el 23 de Sept. de 2011
@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.

Iniciar sesión para comentar.

Más respuestas (1)

Michael Leung
Michael Leung el 23 de Sept. de 2011
I believe that the butter function is able to do 0th order filters. http://www.mathworks.com/help/toolbox/signal/ref/butter.html
  1 comentario
Wayne King
Wayne King el 23 de Sept. de 2011
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.

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by