added task4.2 changed titles of progress windows
This commit is contained in:
+23
-8
@@ -1,12 +1,13 @@
|
||||
% this code is in no manner clean
|
||||
% this code is in no manner clean, much code copy because I was lazy
|
||||
|
||||
% use these fields to select the task that should be calculated
|
||||
do_task1 = false;
|
||||
do_task2 = true;
|
||||
do_task3_1 = true;
|
||||
do_task3_2 = true;
|
||||
do_task3_2_simple_calc = true;
|
||||
do_task4 = true;
|
||||
do_task1 = true;
|
||||
do_task2 = false;
|
||||
do_task3_1 = false;
|
||||
do_task3_2 = false;
|
||||
do_task3_2_simple_calc = false;
|
||||
do_task4_1 = true;
|
||||
do_task4_2 = true;
|
||||
|
||||
carrier_frequency = 2.4e9;
|
||||
wifi_be_subcarrier_spacing = 78.125e3;
|
||||
@@ -42,6 +43,14 @@ if do_task1
|
||||
end
|
||||
|
||||
if do_task2 || do_task3_1
|
||||
if do_task2 && do_task3_1
|
||||
task2ProgressLabel = "Task 2 / Task 3.1";
|
||||
elseif do_task3_1
|
||||
task2ProgressLabel = "Task 3.1";
|
||||
else
|
||||
task2ProgressLabel = "Task 2";
|
||||
end
|
||||
|
||||
use_pilot_tracking = false;
|
||||
task2;
|
||||
results_apep4000_npt = results(apep_values == 4000, :);
|
||||
@@ -49,6 +58,8 @@ if do_task2 || do_task3_1
|
||||
use_pilot_tracking = true;
|
||||
task2;
|
||||
results_apep4000_pt = results(apep_values == 4000, :);
|
||||
|
||||
clear task2ProgressLabel;
|
||||
end
|
||||
|
||||
if do_task3_1
|
||||
@@ -92,7 +103,11 @@ if do_task3_2_simple_calc
|
||||
end
|
||||
end
|
||||
|
||||
if do_task4
|
||||
if do_task4_1
|
||||
use_t1_as_t4 = true;
|
||||
task1;
|
||||
end
|
||||
|
||||
if do_task4_2
|
||||
task4;
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user