matched receiver filter

4 visualizaciones (últimos 30 días)
Maheswary
Maheswary el 19 de Mzo. de 2011
can any1 please give me codes for matched receiver filter in matlab

Respuestas (1)

Honglei Chen
Honglei Chen el 21 de Mzo. de 2011
If you have a signal, x, then the matched filter's coefficients is given by time reverse of x, i.e., x(end:-1:1). If your signal is complex, you also need to to use complex conjugate. You can then use it just as an FIR filter. For example,
>> x = ones(10,1);
>> b = x(end:-1:1);
>> y = filter(b,1,x);

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by