diff options
| author | Albin <albwa833@student.liu.se> | 2019-11-14 09:35:15 +0100 |
|---|---|---|
| committer | Albin <albwa833@student.liu.se> | 2019-11-14 09:35:15 +0100 |
| commit | 74f1d443644c8654d9fbc3bf48f5d3b87e48c199 (patch) | |
| tree | 3d5c5835fc84121e20b8db707a84ad9cc3091a11 | |
| parent | 39117fca7d32e4930867f4caf3100bf9df64ac33 (diff) | |
| download | tfyy51-74f1d443644c8654d9fbc3bf48f5d3b87e48c199.tar.gz | |
Välj ref-time
| -rw-r--r-- | Kod/bilbana/Graph/graphs_test.m | 12 | ||||
| -rw-r--r-- | Kod/bilbana/yc4/main.m | 10 |
2 files changed, 18 insertions, 4 deletions
diff --git a/Kod/bilbana/Graph/graphs_test.m b/Kod/bilbana/Graph/graphs_test.m index 955aeee..248e6da 100644 --- a/Kod/bilbana/Graph/graphs_test.m +++ b/Kod/bilbana/Graph/graphs_test.m @@ -14,6 +14,12 @@ ref_lap_time = 14; %% Actual test graphs(car1.lap_times,ref_lap_time,car1.seg_times,5) %} -position = 2.54; -segment = 2; -detect_missed(position,segment,1)
\ No newline at end of file +ref_time = input('Vilken referenstid ska användas? [13] ', 's'); +ref_time = str2double(ref_time); +if isnan(ref_time) + ref_time = 13; +elseif not(isreal(ref_time)) + ref_time = 13; +end +disp(ref_time) +disp(ref_time*2) diff --git a/Kod/bilbana/yc4/main.m b/Kod/bilbana/yc4/main.m index 3c1b445..56b0014 100644 --- a/Kod/bilbana/yc4/main.m +++ b/Kod/bilbana/yc4/main.m @@ -81,7 +81,15 @@ elseif car2.response == 'M' else car2.running = false; end - +%{ +ref_time = input('Vilken referenstid ska användas? [13] ', 's'); +ref_time = str2double(ref_time); +if isnan(ref_time) + ref_time = 13; +elseif not(isreal(ref_time)) + ref_time = 13; +end +%} ref_time = 13; %% MAIN LOOP while 1 |
