Skip to content
Snippets Groups Projects
Commit 75c0cd67 authored by leprob001's avatar leprob001
Browse files

Every third gps date is now plotted in TOA plot.

parent d9be920c
Branches
Tags
No related merge requests found
...@@ -48,6 +48,11 @@ for o = 1:length(soundsources) ...@@ -48,6 +48,11 @@ for o = 1:length(soundsources)
gpsDates, predictedToas, 20, ... gpsDates, predictedToas, 20, ...
'MarkerFaceColor', [1 1 1] ... 'MarkerFaceColor', [1 1 1] ...
); );
% use only every third gps date
gpsDates = gpsDates(1:3:end);
predictedToas = predictedToas(1:3:end);
text( ... text( ...
artoaGui.figures.editTimeOfArrival.CurrentAxes, ... artoaGui.figures.editTimeOfArrival.CurrentAxes, ...
gpsDates, predictedToas, ['-', soundsources{o}], ...¬ gpsDates, predictedToas, ['-', soundsources{o}], ...¬
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment