DCOM - EXP9 - Performance Analysis of Different Modulation Tech
DCOM - EXP9 - Performance Analysis of Different Modulation Tech
OUTCOME: analyze different band pass digital transmission and reception of signal.
Problem statement:
Develop logic and write a MATLAB code for performance analysis
(BER vs.Eb/No) plots of the modulation scheme given below.
o BPSK
o QAM
o M-PSK
o M-QAM
o D-PSK
clc;
close all;
DCL/V/July-November_2024_Page No.-
K. J. Somaiya College of Engineering, Mumbai-77
% M-PSK BER Calculation (8-PSK, 16-PSK, 32-
PSK) m = 2:1:5;
M = 2.^m;
for i = M
k = log2(i);
berErr = (1 / k) * erfc(sqrt(EbN0lin * k) * sin(pi / i));
plotHandle = plot(EbN0dB, log10(berErr),
char(colors(index))); set(plotHandle, 'LineWidth', 1.5);
legendEntries{end+1} = sprintf('%d-PSK', i); % Add to
legend index = index + 1;
end
% Plot Settings
legend(legendEntries, 'Location', 'southwest'); % Display legend
axis([-4 24 -8 0]); % Adjust axis limits for better
visibility set(gca, 'XTick', -4:2:24); % X-axis ticks at intervals
of 2 ylabel('Probability of BER (log_{10}(P_b))');
xlabel('E_b/N_0 (dB)');
grid on;
title('Comparative BER Performance of Modulation Schemes');
Expected Output:
DCL/V/July-November_2024_Page No.-
K. J. Somaiya College of Engineering, Mumbai-77
Comparative analysis
Discussion/Conclusion:
By performing the above experiment, we analyzed the performance of various digital modulation
schemes through BER vs. Eb/No plots. The results demonstrated the trade-off between modulation
complexity and error performance, with higher-order schemes offering better data rates but increased
error susceptibility. This experiment emphasized the importance of selecting suitable modulation
schemes for reliable communication based on channel conditions.
DCL/V/July-November_2024_Page No.-