Borrar filtros
Borrar filtros

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

19 visualizaciones (últimos 30 días)
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..

Respuestas (1)

Shivam Kumar Singh
Shivam Kumar Singh el 18 de Jun. de 2020
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 comentario
ALEESHA JOJI
ALEESHA JOJI el 21 de Jun. de 2020
hai
thank you for your response. but there is no change in the snr value,actually it is decreasing.

Iniciar sesión para comentar.

Categorías

Más información sobre Matched Filter and Ambiguity Function en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by