Neeed help on low pass filter designing ?
이전 댓글 표시
I want to design a low pass filter which i can specify the parameter in this way
[h]=LowpassFilter(Fs,fs,fp,M)
Fs- sampling frequency fs- stop band frequency fp- pass band frequency M- window length
This is how i have design it but it doesn't work for me.
function h=LowpassFilter(Fs,fs,fp,M)
h=fdesign.lowpass('N,Fp,Fst',M,fp,fs,Fs );
please help me
답변 (1개)
Wayne King
2013년 4월 1일
What problem are you having. What error message are you getting?
Fs = 1000;
fp = 100;
fst = 150;
M = 30;
h = fdesign.lowpass('N,Fp,Fst',M,fp,fst,Fs);
카테고리
도움말 센터 및 File Exchange에서 Digital Filter Design에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!