Wmnproj
Wmnproj
Wmnproj
if isempty(ver('wlan'))
error('WLAN System Toolbox is required to run this simulation.');
end
% Calculate enhancements
enhancements = ((scaledThroughputResults - baselineThroughput) ./
baselineThroughput) * 100;
enhancements(enhancements > 100) = 100; % Limit enhancement to 100%
% Display Results
figure;
plot(snrValues, scaledThroughputResults, '-o');
title('TCP Throughput over IEEE 802.11ac');
xlabel('SNR (dB)');
ylabel('Throughput (Mbps)');
grid on;