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

Bugfix, filtration of the selected TOA points has been done wrong.

parent 6d8d7044
No related branches found
No related tags found
No related merge requests found
173
\ No newline at end of file
174
\ No newline at end of file
......@@ -16,7 +16,7 @@ endDate = artoa.convert.dmy2rd( ...
%% Filter indices
filteredIndices = pSelectedIndices((pToaData.toaDate(pSelectedIndices) >= launchDate) & (pToaData.toaDate(pSelectedIndices) < endDate));
filteredIndices = (pToaData.toaDate >= launchDate) & (pToaData.toaDate < endDate) & pSelectedIndices;
if ~any(filteredIndices)
filteredIndices = [];
......
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