Skip to content

Commit

Permalink
fix: fix: peak interval symmetry
Browse files Browse the repository at this point in the history
  • Loading branch information
jasmineortega committed Jun 2, 2022
1 parent 19a60cf commit a26419f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/emgdecompy/viz.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def muap_dict(raw, pt, l=31):
ptl = np.zeros((pt[i].shape[0], l * 2), dtype="int")

for j, k in enumerate(pt[i]):
ptl[j] = np.arange(k - l, k + l)
ptl[j] = np.arange(k - l, k + l + 1)

ptl = ptl.flatten()

Expand Down

0 comments on commit a26419f

Please sign in to comment.