Closed joshuawallace closed 6 years ago
I actually ran into a situation where I had more than one value that passed fitmagminind = npwhere(fitmags == npmin(fitmags)). This creates problems down the pipeline when subsequent functions are expecting only a since epoch value.
fitmagminind = npwhere(fitmags == npmin(fitmags))
Thanks! This would probably happen often with flat transit LCs, so it's good that you caught it.
Indeed, it happened with a prewhitened light curve.
I actually ran into a situation where I had more than one value that passed
fitmagminind = npwhere(fitmags == npmin(fitmags))
. This creates problems down the pipeline when subsequent functions are expecting only a since epoch value.