Merge branch 'develop' of ariadne.geophysik.rub.de:/data/git/pylot into develop

This commit is contained in:
Ludger Küperkoch
2017-08-15 16:56:17 +02:00
3 changed files with 21 additions and 15 deletions
+1 -1
View File
@@ -476,7 +476,7 @@ def getsignalwin(t, t1, tsignal):
'''
# get signal window
isignal, = np.where((t <= min([t1 + tsignal, len(t)])) \
isignal, = np.where((t <= min([t1 + tsignal, t[-1]])) \
& (t >= t1))
if np.size(isignal) < 1:
print("getsignalwin: Empty array isignal, check signal window!")