Skip to content

Commit 132e6f0

Browse files
committed
Significant fixes to Python implementation of wavelet transform
1 parent 6c7c018 commit 132e6f0

File tree

2 files changed

+157
-132
lines changed

2 files changed

+157
-132
lines changed

pymodalib/implementations/python/matlab_compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def is_arraylike(value):
6262

6363
def backslash(x, y):
6464
"""Imitates the MATLAB backslash operator."""
65-
return np.linalg.lstsq(x, y, rcond=None)[0] # TODO: check this
65+
return np.linalg.lstsq(x, y, rcond=None)[0]
6666

6767

6868
def nextpow2(x):

0 commit comments

Comments
 (0)