Skip to content
This repository has been archived by the owner on Jun 9, 2019. It is now read-only.

Commit

Permalink
Update bandpass lowcut value
Browse files Browse the repository at this point in the history
Change bandpass lowcut value to nonzero value because scipy IIR filters do not allow Wn=1 and Wn=0 in anymore (see scipy/scipy#7783)
  • Loading branch information
Santihago authored Apr 16, 2018
1 parent cbd151b commit e30a507
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QRSDetectorOnline.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def __init__(self, port, baud_rate):
self.number_of_samples_stored = 200 # Change proportionally when adjusting frequency (in samples).
self.possible_measurement_upper_limit = 10 # ECG device physiologically upper measurement limit.

self.filter_lowcut = 0.0
self.filter_lowcut = 0.1
self.filter_highcut = 15.0
self.filter_order = 1

Expand Down

0 comments on commit e30a507

Please sign in to comment.