Skip to content

Commit

Permalink
add code example to REDME.md
Browse files Browse the repository at this point in the history
  • Loading branch information
SheinaG committed May 21, 2023
1 parent cf9eac9 commit ab280e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ filtered_ecg_rec = pre.notch(n_freq=60)
filtered_ecg_rec = pre.bpfilt()
fp = Fp.FiducialPoints(signal, fs)
fp = Fp.FiducialPoints(filtered_ecg_rec, fs)
matlab_pat = '/usr/local/MATLAB/R2021a'
peaks_jqrs = fp.jqrs()
peaks_xqrs = fp.xqrs()
Expand All @@ -87,7 +87,7 @@ bsqi_score = pre.bsqi(peaks_jqrs , peaks_xqrs)
fiducials = fp.wavedet(matlab_pat, peaks_jqrs)
obm = Obm.Biomarkers(signal, fs, fiducials)
obm = Obm.Biomarkers(filtered_ecg_rec, fs, fiducials)
ints, stat_i = obm.intervals()
waves, stat_w = obm.waves()
Expand Down

0 comments on commit ab280e5

Please sign in to comment.