Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

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.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top