Main Content
Frequency Response of Lowpass Bessel Filter
Design a fifth-order analog lowpass Bessel filter with approximately constant group delay up to rad/second. Plot the magnitude and phase responses of the filter using freqs
.
wc = 10000; [b,a] = besself(5,wc); freqs(b,a)
Compute the group delay response of the filter as the negative of the derivative of the unwrapped phase response. Plot the group delay to verify that it is approximately constant up to the cutoff frequency.
[h,w] = freqs(b,a); grpdel = -diff(unwrap(angle(h)))./diff(w); clf loglog(w(2:end),grpdel) xlabel("Frequency (rad/s)") ylabel("Group delay (s)") xline(wc) grid on