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