FIR filter

조회 수: 6 (최근 30일)
yasser safi
yasser safi 2012년 5월 7일
clarify the fir1 code plzz?? and how to design filter
i designed the cheby fiter but i cant design the fir1 filter
function filtered_sig = cheby_filter(no,c,w,x,R)
w2 = c+(w/2);
w1 = c-(w/2);
W = [w1 w2];
[b,a] = cheby1(no,R,W);
filtered_sig = filtfilt(b,a,x');
filtered_sig = filtered_sig';
i need to design it in this way..

채택된 답변

Wayne King
Wayne King 2012년 5월 7일
I have no idea what you have declared for w1, w2, and no, but I'll assume those are correct.
w2 = c+(w/2);
w1 = c-(w/2);
W = [w1 w2];
b = fir1(no,W);
filtered_sig = filtfilt(b,1,x');
  댓글 수: 1
yasser safi
yasser safi 2012년 5월 7일
thats for chepy filter
i need function for FIR filter
our project is PCR and i wanf filter the data ( absorbance)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by