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
Yang Liu
2020년 10월 12일
Maybe you can turn the analog filter to digital filter and then you can use grpdelay function.
답변 (1개)
Mathieu NOE
2020년 10월 12일
0 개 추천
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)')
카테고리
도움말 센터 및 File Exchange에서 Analog Filters에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!