필터 지우기
필터 지우기

how can i perform matched filtering using fft in matlab to improve the SNR?

조회 수: 25 (최근 30일)
ALEESHA JOJI
ALEESHA JOJI 2020년 6월 15일
댓글: ALEESHA JOJI 2020년 6월 21일
my purpose is to improve the snr by matched filtering.For this i've tried the procedure which includes R = fft(r);
H = conj(fft(s));
h = ifft(H);
Y = R.*H;
y = real(ifft(Y));
still thers is no change in the snr.please help me asap..

답변 (1개)

Shivam Kumar Singh
Shivam Kumar Singh 2020년 6월 18일
Let's assume that s is your signal in time domain.
There are two ways of creating a matched filter.
1.Do it youself.
b = conj(s(end:-1:1));
y = filter(b,1,x);
  댓글 수: 1
ALEESHA JOJI
ALEESHA JOJI 2020년 6월 21일
hai
thank you for your response. but there is no change in the snr value,actually it is decreasing.

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

카테고리

Help CenterFile Exchange에서 Signal Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by