DSPRelated.com
Forums

Does group delay only match real filter delay ONLY inside the passband?

Started by Mil1o 6 years ago3 replieslatest reply 6 years ago137 views

When filtering a sinusoid with an IIR filter (50 Hz cutoff- highpass filter, Fs=48K ) I observed that the group delay that matlab shows me does not match the actual delay at the output. This is true when the sinusoid is close or below the cutoff frequency, like 20-80 Hz. I wonder what is the reason?

-Milad

[ - ]
Reply by jbrowerMay 17, 2018

Milad-

For IIR filters, group delay is notoriously difficult to measure at frequency response transition regions.  Phase unwrapping has to be performed carefully and I don't know if there's a perfect algorithm for it, I think it's always done a bit ad-hoc.

I'm not sure what MATLAB is showing you, but here is an elliptic bandpass filter response showing unwrapped phase and group delay, calculated using an FFT applied to the filter impulse response:

elliptic_filter_unwrapped_phae_group_del

as you can see getting an accurate value in transition regions might be challenging.  A lot would depend on how you're measuring "actual delay" -- size of FFT to calculate frequency response, algorithm for phase unwrapping, numerical accuracy, etc.

-Jeff

[ - ]
Reply by jmarceloldMay 17, 2018

Forgive me if I am saying things you already known. Group delay is not constant for IIR filter. It is a function of the frequency. Therefore, your filter will produce a different group delay for each frequency component of the input signal. Group delay is the derivative of your filter phase vs frequency response, which can be calculated analytically for a specific frequency value.

The phase response is given by 

$$ \phi(\omega) = \arg\left \{ H(i\omega) \right \} $$

where \(H(i\omega)\) is the filter transfer function.

The group delay is given by

$$ \tau(\omega) = \frac{d \phi(\omega)}{d \omega} $$


Regards


[ - ]
Reply by John_GMay 17, 2018

Milad,

In addition to the replies below it may help to consider the difference between group delay and phase delay (aka time delay). There is a detailed discussion of this at:

https://en.wikipedia.org/wiki/Group_delay_and_phase delay

In short, group delay is the frequency derivative of phase; phase delay is phase divided by frequency. Both have the same units (time) and inside the passband are tightly related. 

Group delay is the best for bandpass structures because the absolute value of the phase is of no concern as it is the relative phase shift that affects the signal. 

Usually the difference between these two functions is ignored because the time delay of the small signals outside the passband does not usually effect the filter output significantly.

John