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
No related branches found
No related tags found
No related merge requests found
......@@ -42,12 +42,17 @@ for o = 1:length(soundsources)
gpsDates(selection) = NaN;
predictedToas(selection) = NaN;
clear selection;
scatter( ...
artoaGui.figures.editTimeOfArrival.CurrentAxes, ...
gpsDates, predictedToas, 20, ...
'MarkerFaceColor', [1 1 1] ...
);
% use only every third gps date
gpsDates = gpsDates(1:3:end);
predictedToas = predictedToas(1:3:end);
text( ...
artoaGui.figures.editTimeOfArrival.CurrentAxes, ...
gpsDates, predictedToas, ['-', soundsources{o}], ...¬
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment