Skip to content

Commit

Permalink
fix: correct variable called by preprocessing functions
Browse files Browse the repository at this point in the history
  • Loading branch information
danfke committed May 25, 2022
1 parent 1ca76f5 commit 0ada908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_decomposition.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def test_separation():

x = emg.preprocessing.flatten_signal(signal)
x = emg.preprocessing.center_matrix(x)
x = emg.preprocessing.extend_all_channels(signal, 16)
x = emg.preprocessing.extend_all_channels(x, 16)
z = emg.preprocessing.whiten(x)

n = 0
Expand Down

0 comments on commit 0ada908

Please sign in to comment.