From bdcb0ba6499065c101f73e1101f8e44e39718b95 Mon Sep 17 00:00:00 2001 From: marcel Date: Mon, 21 Aug 2017 13:38:50 +0200 Subject: [PATCH] [change] islope calculation with 2 samples --- pylot/core/pick/picker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylot/core/pick/picker.py b/pylot/core/pick/picker.py index 87162ecc..2355d4f3 100644 --- a/pylot/core/pick/picker.py +++ b/pylot/core/pick/picker.py @@ -250,7 +250,7 @@ class AICPicker(AutoPicker): return imax = np.argmax(dataslope) iislope = islope[0][0:imax+1] - if len(iislope) <= 2: + if len(iislope) < 2: # calculate slope from initial onset to maximum of AIC function print("AICPicker: Not enough data samples left for slope calculation!") print("Calculating slope from initial onset to maximum of AIC function ...")