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 me please!! what are the relation for Eb/n0 Vs SNR ?

Status
Not open for further replies.

Jeng_TCE

Newbie level 3
Joined
Mar 5, 2009
Messages
4
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,304
snr eb

what are the equation to explain relation about Eb/n0 Vs SNR (DQPSK modulation) ?

Thank you.

Added after 59 minutes:

%%Trasmit Signal
M = 4; % Use DQPSK in this example, so M is 4.
x = randint(5000,1,M); % Random data
tx = dpskmod(x,M,pi/4); % Modulate using a nonzero initial phase.

%%Generate channel
chan=rayleighchan(1/10000,268.67,[0 10^-6],[0 1]);

%%Pass signal on channel
y=filter(chan,tx);
%%Receive
SNR = 0:2:40; % Range of SNR values, in dB.
for n = 1:length(SNR)
rxSig = awgn(y,SNR(n)); % Add Gaussian noise.
rx = dpskdemod(rxSig,M); % Demodulate.
end

%BER calculation

i cannot find BER from this code.

Can enyone help me to Find BER from this code?
 

relationship eb/no with snr

if it is true just biterr(rx,x) (in bit) in your case!
 

rapport entre eb/n0 et snr

thank you.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top