Skip to content
Snippets Groups Projects
Commit 4ef47baf authored by leprob001's avatar leprob001
Browse files

The rafos dates are now shown next to the SAT positions in trajectory output plot.

parent 9001f96b
No related branches found
No related tags found
No related merge requests found
282 283
\ No newline at end of file \ No newline at end of file
...@@ -26,7 +26,7 @@ steps = 1:length(x); ...@@ -26,7 +26,7 @@ steps = 1:length(x);
%% Prepare text cell %% Prepare text cell
textCell = {}; textCell = {};
for i = steps for i = steps
textCell{end + 1} = {'', [' ' num2str(year(i)) '-' pad(num2str(month(i)), 2, 'left', '0') '-' pad(num2str(day(i)), 2, 'left', '0')]}; textCell{end + 1} = {'', [' ' num2str(year(i)) '-' pad(num2str(month(i)), 2, 'left', '0') '-' pad(num2str(day(i)), 2, 'left', '0') ', ' num2str(artoa.convert.dmy2rd(day(i), month(i), year(i)))]};
end end
%% Plot %% Plot
......
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