Skip to content

Commit

Permalink
docs: minor docstring inconsistencies in extend_all_channels()
Browse files Browse the repository at this point in the history
  • Loading branch information
jasmineortega committed May 18, 2022
1 parent 6c3ac94 commit ce5fdd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/emgdecompy/emgdecompy.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ def extend_all_channels(x_mat, R):
Examples
--------
>>> R = 5
>>> R = 3
>>> x_mat = np.array([[1, 2, 3, 4,], [5, 6, 7, 8,]])
>>> extend_input_all_channels(x_mat, 3)
>>> extend_all_channels(x_mat, R)
array([[1., 2., 3., 4.],
[0., 1., 2., 3.],
[0., 0., 1., 2.],
Expand Down

0 comments on commit ce5fdd8

Please sign in to comment.