Matlab Analog Filter Grpdelay

I designed a analog elliptic filter using Matlab. How do I find the filter grpdelay as a function of freq?
(grpdelay command works only for digital filters)

1 comentario

Yang Liu
Yang Liu el 12 de Oct. de 2020
Maybe you can turn the analog filter to digital filter and then you can use grpdelay function.

Iniciar sesión para comentar.

Respuestas (1)

Mathieu NOE
Mathieu NOE el 12 de Oct. de 2020

0 votos

Compute the group delay response of the filter as the derivative of the unwrapped phase response.
[h,w] = freqs(b,a,1000);
grpdel = diff(unwrap(angle(h)))./diff(w);
clf
semilogx(w(2:end),grpdel)
xlabel('Frequency (rad/s)')
ylabel('Group delay (s)')

Productos

Etiquetas

Preguntada:

el 23 de Nov. de 2018

Respondida:

el 12 de Oct. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by