필터 지우기
필터 지우기

PROBLEM IN DESIGNING A LOW PASS FILTER

조회 수: 1 (최근 30일)
raj
raj 2012년 3월 31일
I have to design a lowpass filter with passband of 0-1000Hz and sampling rate of 10kHz when i implement using fdatool it works but when I use this piece of code there is an error saying 'Value must be strictly positive'. Here is the code please correct me
d = fdesign.lowpass('Fp,Fst,Ap,Ast',0,1000,1,80,10000);
Hd1 = design(d,'equiripple');
t = 0:1e-4:1;
x = cos(2*pi*500*t)+0.5*cos(2*pi*1000*t);
out = filter(Hd1,x);

채택된 답변

Wayne King
Wayne King 2012년 3월 31일
Because Fp is the passband frequency and Fst is the stopband frequency.
You have set your passband frequency to 0.
You cannot have a realizable "brick wall" filter. You must have some transition band between your passband frequency, which for you is 1000 (not 0!), and the stopband frequency.
d = fdesign.lowpass('Fp,Fst,Ap,Ast',1000,1200,1,80,10000);
Hd1 = design(d,'equiripple');
t = 0:1e-4:1;
x = cos(2*pi*500*t)+0.5*cos(2*pi*1000*t);
out = filter(Hd1,x);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Digital Filter Design에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by