matched filter design of a given channel filter
이전 댓글 표시
hello, i want to design a matched filter of a given filter:
% channel Model
NFFT = 2048; % number of h(t) samples
tau = 4.97e-3;
Lpof = 10;
fs= 1000;
dt = 1/fs;
tt = (0:NFFT-1)/fs;
hpof1 = exp(-(tt-tau*Lpof).^2/2/sigma^2);
end
so i have the filter (hpof1(t)) and i have to design the (hpof1(-t)*) using matlab how should i do this. Thanks in advace
답변 (1개)
Honglei Chen
2012년 11월 2일
conj(fliplr(hpof1))
카테고리
도움말 센터 및 File 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!