task 3.1 -> done

This commit is contained in:
ti_mo
2026-06-08 16:45:41 +02:00
parent 59b6a49739
commit 7accb4ea51
6 changed files with 957 additions and 12 deletions
+25 -1
View File
@@ -27,5 +27,29 @@ seed = 666;
ntn_tdl_delay_profiles = ["A" "B" "C" "D"];
use_t1_as_t4 = false;
task1;
% task1;
use_pilot_tracking = false;
task2;
results_apep4000_npt = results(apep_values == 4000, :);
use_pilot_tracking = true;
task2;
results_apep4000_pt = results(apep_values == 4000, :);
figure;
semilogy(snrs, results_apep4000_npt, ['-' 'o']);
hold on;
semilogy(snrs, results_apep4000_pt, ['-' 'x']);
hold on;
grid on;
xlabel('SNR (dB)');
ylabel('PER');
dataStr = ["no pilot tracking" "pilot tracking"]
legend(dataStr, 'Location', 'NorthEastOutside');
title('PER over SNR for APEP 4000, usage of pilot tracking comparision, CBW20, NTN-TDL-C');