FIR Parks-McClellan
이전 댓글 표시
Hi,
I have a set of FIR Parks-McClellan coefficient :
Numerator: FR_SV = [3.91719822748777E-02, 0.103629842929331, 0.171922134825388, 0.221881476438683, 0.221881476438683, 0.171922134825388, 0.103629842929331, 3.91719822748777E-02];
Denominator: [1.000];
Can i use spectrogram function to plot and see the filter response? I have browse through the help file and could not find Parks-McClellan window. Anyone can help?
Regards, Newbie
채택된 답변
추가 답변 (3개)
Wayne King
2012년 6월 13일
You don't want to use spectrogram, use freqz()
freqz(FR_SV,1)
If you know the sampling frequency, you can input that as well. Here I will assume 10 kHz.
Fs = 1e4;
freqz(FR_SV,1,[],Fs)
Tan
2012년 6월 13일
0 개 추천
댓글 수: 3
Wayne King
2012년 6월 13일
Honglei said it perfectly. That's why I said use freqz().
Tan
2012년 6월 13일
Tan
2012년 6월 13일
Wayne King
2012년 6월 13일
I'm not familiar with systemVue2009 so I cannot answer your question. In MATLAB, you can use FDATool
>>fdatool
to design a Parks-McClellan FIR equripple filter and export (save) the filter coefficients.
카테고리
도움말 센터 및 File Exchange에서 Fixed-Point Filters에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!