matched filter design of a given channel filter
Afficher commentaires plus anciens
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
Réponses (1)
Honglei Chen
le 2 Nov 2012
conj(fliplr(hpof1))
Catégories
En savoir plus sur Matched Filter and Ambiguity Function dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!