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.

Constellation diagrams with noise

Status
Not open for further replies.

Na3noOo3

Newbie level 4
Joined
Dec 19, 2005
Messages
7
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,336
how to make constellation diagram in matlab

Please, can anyone tell me how to plot the signal constellation of ASK, FSK and PSK
in the presence of noise using Matlab codes.

Thank you very much indeed
 

constellation diagram of ask using matlab

make the noise-less ASK, FSK and PSK signal

Add gaussian noise to that

Plot a scatter diagram, in MATLAB...

It's very easy
 

constellation diagrams for fsk

yup, I already made the nioseless constellation diagram.

% ASK constellation diagram without noise

N=1000; %number of bits that were transmitted
XMIN=-1.5;
XMAX=1.5;
YMIN=-1.5;
YMAX=1.5;
for i=1:N
S=round(rand); %a source that generates a random numbers (0,1)
if S==1
x1=1.;
y1=0;
else
x2=0;
y2=0;
end
end
plot(x1,y1,'x',x2,y2,'*')
axis([XMIN XMAX YMIN YMAX])
title('ASK Constellation Diagram')
legend('(1) transmitted','(0) transmitted');
xlabel('Theoritical')


but how can I add the gaussian white noise??

Thank you very much :D
 

hi can any one tell me the program for BPSK QPSK and is there anything that can be done on matlab for pi/4 QPSK
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top