-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSDplot.m
More file actions
67 lines (50 loc) · 2.06 KB
/
SDplot.m
File metadata and controls
67 lines (50 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
clear
N = 10^6; % number of bits or symbols
% Transmitter
ip = rand(1,N)>0.5; % generating 0,1 with equal probability
s = 2*ip-1; % BPSK modulation 0 -> -1; 1 -> 1
nRx = [1 2];
Eb_N0_dB = [0:35]; % multiple Eb/N0 values
for jj = 1:length(nRx)
for ii = 1:length(Eb_N0_dB)
n = 1/sqrt(2)*[randn(nRx(jj),N) + j*randn(nRx(jj),N)]; % white gaussian noise, 0dB variance
h = 1/sqrt(2)*[randn(nRx(jj),N) + j*randn(nRx(jj),N)]; % Rayleigh channel
% Channel and Noise addition
sD = kron(ones(nRx(jj),1),s);
y = h.*sD + 10^(-Eb_N0_dB(ii)/20)*n;
%finding the power of channel on all receive chains
hPower = h.*conj(h);
% finding the maximum power
[hMaxVal ind] = max(hPower,[],1);
hMaxValMat = kron(ones(nRx(jj),1),hMaxVal);
% selecting the chain with the maximum power
ySel = y(hPower==hMaxValMat);
hSel = h(hPower==hMaxValMat);
% equalization with the selected receive chain
yHat = ySel./hSel;
yHat = reshape(yHat,1,N); % just to get the matrix % dimension proper
% receiver - hard decision decoding
ipHat = real(yHat)>0;
% counting the number of errors
nErr(jj,ii) = size(find([ip- ipHat]),2);
end
end
simBer = nErr/N; % simulated ber
EbN0Lin = 10.^(Eb_N0_dB/10);
theoryBer_nRx1 = 0.5.*(1-1*(1+1./EbN0Lin).^(-0.5));
% nRx=1 (theory)
theoryBer_nRx2 = 0.5.*(1-2*(1+1./EbN0Lin).^(-0.5) + (1+2./EbN0Lin).^(-0.5)); % nRx=2 (theory)
% plot
close all
figure
semilogy(Eb_N0_dB,theoryBer_nRx1,'bp-','LineWidth',2);
hold on
semilogy(Eb_N0_dB,simBer(1,:),'mo-','LineWidth',2);
semilogy(Eb_N0_dB,theoryBer_nRx2,'rd-','LineWidth',2);
semilogy(Eb_N0_dB,simBer(2,:),'ks-','LineWidth',2);
axis([0 35 10^-5 0.5])
grid on
legend('nRx=1 (theory)', 'nRx=1 (sim)', 'nRx=2 (theory)', 'nRx=2 (sim)');
xlabel('Eb/No, dB');
ylabel('Bit Error Rate');
title('BER for BPSK modulation with Selection diveristy in Rayleigh channel');