Skip to content
Snippets Groups Projects
Verified Commit 82454787 authored by leprob001's avatar leprob001
Browse files

fix: Wrong variable name used

parent 20ed232d
No related branches found
No related tags found
No related merge requests found
......@@ -3,20 +3,20 @@ function [filteredIndices] = filterSelectionBySoundsourceLifetime(pSelectedIndic
% Detailed explanation goes here
%% Get parameter of soundsource
launchDate = artoa.convert.dmy2rd(soundsource.begemis(3), ...
soundsource.begemis(2), ...
soundsources.begemis(1)) ...
launchDate = artoa.convert.dmy2rd(pSoundsource.begemis(3), ...
pSoundsource.begemis(2), ...
pSoundsource.begemis(1)) ...
+ artoa.convert.hms2rd( ...
soundsources.begemis(4), ...
soundsources.begemis(5), ...
pSoundsource.begemis(4), ...
pSoundsource.begemis(5), ...
0 ...
);
endDate = artoa.convert.dmy2rd(soundsources.endemis(3), ...
soundsources.endemis(2), ...
soundsources.endemis(1)) ...
endDate = artoa.convert.dmy2rd(pSoundsource.endemis(3), ...
pSoundsource.endemis(2), ...
pSoundsource.endemis(1)) ...
+ artoa.convert.hms2rd( ...
soundsources.endemis(4), ...
soundsources.endemis(5), ...
pSoundsource.endemis(4), ...
pSoundsource.endemis(5), ...
0 ...
);
......
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