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.

Bayes_ML_MAP_receiver

Status
Not open for further replies.

pulsedia

Newbie level 2
Joined
Jul 29, 2010
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
GR
Activity points
1,290
create signal modulated by BPSK, and enclose it in
receiver via the channel additive white Gaussian noise.
 
Last edited:

Did anyone knows in the receiver code how to add Bayes Map Ml criteria code?
 
Last edited:

Hi pulsedia,
The MAP(Bayes) receiver is already implemented from your code. You may see the following criterion.
1): MAP receiver: p(s|y) = p(y|s)p(s) / p(y).
y = s+n.
Where s is i.i.d signal, n is i.i.d. and AWGN, and y is the received signal.

2): According to the MAP criterion, we further make one assumption to 1), <=== you can see it from your code to the "Transmitter".

3): According to 2), We can get that maximizing p(s|y) is equivalent to maximizing to p(y|s), and we define p(y|s) as maximum likelihood function.
Finally we get the hard decision receiver based on when { p(y>0), s=1 } and { p(y<0), s = 0 }.

If you want to realize MAP receiver, back to 2) and change the assumption. You may realize another receiver according to the MAP criterion.

ps: please feel free to correct my reply.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top