Week - 5
Week - 5
Name Pachaiappan D
College Name Sri Ramanujar Engineering College
College Code 4123
Register number 412321106007
Assignment Week - 5
PROGRAM :
% Script for computing the Bit Error Rate (BER) for Binary Phase Shift Keying (BPSK)
modulation in a
% Rayleigh fading channel with 2 Transmitters (Tx) and 2 Receivers (Rx) MIMO channel,
for ii = 1:length(Eb_N0_dB)
% Transmitter
% Receiver
end
simBer = nErr / N;
theoryBerMRC_nRx2 = p .^ 2 .* (1 + 2 * (1 - p));
close all;
figure;
hold on;
grid on;
legend('Theory (nTx=2, nRx=2, ZF)', 'Theory (nTx=1, nRx=2, MRC)', 'Simulation (nTx=2,
nRx=2, MMSE)');
title('BER for BPSK modulation with 2x2 MIMO and MMSE equalizer (Rayleigh channel)');
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Assignment Questions:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
OUTPUT: