matched receiver filter

4 次查看(过去 30 天)
Maheswary
Maheswary 2011-3-19
can any1 please give me codes for matched receiver filter in matlab

回答(1 个)

Honglei Chen
Honglei Chen 2011-3-21
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);

类别

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