help:matlab codes for matched filter

Status
Not open for further replies.
Hi,
It is a simple multiply and accumulate. All you need to know is the transmitted waveform ......

Hope this helps
BRM
 

Here's a simple pseudo code.

==

T = your_time_length
pluse = your_pulse_shape + noise

mf = pulse(1);

for k=2:T
mf(k) = mf(k-1) + pulse(k);
end
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…