From 59b6a4973926ed34f5d12c540e979b039ea5d55d Mon Sep 17 00:00:00 2001 From: ti_mo Date: Mon, 8 Jun 2026 14:39:01 +0200 Subject: [PATCH] removed verify plot - switched task2's apep values --- lab_4/lab_4.m | 12 ------------ lab_4/task2.m | 4 ++-- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/lab_4/lab_4.m b/lab_4/lab_4.m index 3f84388..69d2858 100644 --- a/lab_4/lab_4.m +++ b/lab_4/lab_4.m @@ -29,15 +29,3 @@ ntn_tdl_delay_profiles = ["A" "B" "C" "D"]; use_t1_as_t4 = false; task1; task2; - -apep1000Idx = find(apep_values == 1000); - -figure; -semilogy(snrs, errorRates(1,:), "-o"); -hold on; -semilogy(snrs, results(apep1000Idx,:), "-x"); -grid on; -xlabel("SNR (dB)"); -ylabel("PER"); -legend("Task 1 APEP 1000", "Task 2 APEP 1000"); -title("Task 1 vs Task 2 consistency check"); \ No newline at end of file diff --git a/lab_4/task2.m b/lab_4/task2.m index da114d4..2d00929 100644 --- a/lab_4/task2.m +++ b/lab_4/task2.m @@ -1,5 +1,5 @@ -% apep_values = [250 1000 4000 8000 12000]; -apep_values = [250 600 800 1000]; +apep_values = [250 1000 4000 8000 12000]; +% apep_values = [250 600 800 1000]; results = zeros(numel(apep_values), numel(snrs));