how to convert 14 tap FIR filter to equivalent IIR filter using FDAtool?
이전 댓글 표시
how to convert 14 tap FIR filter to equivalent IIR filter using FDAtool?
답변 (2개)
Harold Zintel
2013년 1월 17일
0 개 추천
I had a similar problem, looked at your question and later figured out I could use a statement like
[b,a]=prony(h,10,10)
where h is the FIR impulse response
and then use
fvtool(h,1,b,a)
to compare the FIR and IIR filters
So far it seems to work OK!
Akshata
2025년 2월 3일
0 개 추천
카테고리
도움말 센터 및 File Exchange에서 Filter Design에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!