필터 지우기
필터 지우기

HOW TO APLLY FILTER ON A SIGNAL

조회 수: 2 (최근 30일)
Tina
Tina 2019년 12월 22일
댓글: Tina 2019년 12월 22일
So basicalyi have to apply a 10th order (hamming window) band passfilter on a signal.I have designed the filter but unable to apply on signal
fs=300 hz,and fc1=10 and fc2 =15 . THe design code is following please tell me how to apply it on a signal
n=10;
fs=300;
dt=1/fs;
t=0:dt:1-dt;
fc1=10;
fc2=15;
wc1=fc1/(fs/2);
wc2=fc2/(fs/2);
b_p=fir1(n,[wc1 wc2],'bandpass',hamming(n+1));
[H,w] = freqz(b_p,1);
figure
plot(w/pi,20*log(abs(H)),'b')
PLEASE HELP!!!!!!

채택된 답변

Image Analyst
Image Analyst 2019년 12월 22일
You need to continue the code by calling the filter() function. See further down in the help of fir1() for an example where they high pass filtered the signal.
  댓글 수: 3
Image Analyst
Image Analyst 2019년 12월 22일
Not sure what to expect, but if it gives that, then that's what you told it to give you. It will do just what you tell it to. Are they both space or time domain signals? I don't know why the x axes tick marks are different.
Tina
Tina 2019년 12월 22일
And can you also guide ,how can i plot impulse response of filter

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matched Filter and Ambiguity Function에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by