How to make bandpass filter?

조회 수: 4 (최근 30일)
Andrew
Andrew 2012년 11월 28일
Dear community, I have got a signal with a noise. Frequency of this noise is 50 kHz. How can I cut it off? What is the easiest way to make bandpass filter? Thanks in advise.
Andrew

채택된 답변

Wayne King
Wayne King 2012년 11월 28일
편집: Wayne King 2012년 11월 28일
OK, then you can do two filters. A highpass filter and a notch filter (I'll assume you have fdesign.notch)
d = fdesign.highpass('Fst,Fp,Ast,Ap',2500,3000,60,0.5,5e6);
Hd1 = design(d,'butter');
d2 = fdesign.notch('N,F0,Q',10,5e4,35,5e6);
Hd2 = design(d2);
Hd = cascade(Hd1,Hd2);
Now you can use Hd to filter data.
out = filter(Hd,input);
You can view the filter with
fvtool(Hd,'Fs',5e6)
  댓글 수: 1
Andrew
Andrew 2012년 11월 28일
Thank you very much!

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

추가 답변 (2개)

Wayne King
Wayne King 2012년 11월 28일
You have to know your sampling frequency, but you can you use fdesign.bandpass
Also when you specify the frequency of the noise as 50 kHz, are you saying that the "noise" is sinusoidal, only occurring at 50 kHz? If so, then a notch filter would be appropriate. If you have the DSP System Toolbox see fdesign.notch.
If you describe your the frequency band of interest (what you want to keep) and the sampling frequency, we can help you better. For example, it may be that a lowpass filter would be appropriate.
  댓글 수: 1
Andrew
Andrew 2012년 11월 28일
편집: Andrew 2012년 11월 28일
I have a wanted signal with noise. The sampling rate is 5 MHz. The frequencies of this noise are 1-3 kHz and 50 kHz. So I want to cut off this frequencies and keep all other.

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


Wayne King
Wayne King 2012년 11월 28일
With a 5 MHz sampling rate and what you want, it's going to be a very expensive filter, do you really need to keep frequencies below 1 kHz at that sampling rate? Or can you just get rid of everything below 3 kHz?
Or do you really need to have the data sampled at 5 MHz? Can you downsample to a lower sampling rate?
Also, you did not answer the question about the noise at 50 kHz. Is it sinusoidal?
  댓글 수: 1
Andrew
Andrew 2012년 11월 28일
Yes, the noise at 50 kHz is sinusoidal. I don't want to downsample, because the wanted is signal is fluctuation, so I need to keep sampling frequency. Sorry, I have made a mistake, I can get rid of everything bellow 3kHz.

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

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by