Skip to content

Commit eae8d1e

Browse files
committed
fix getGSI for CWW
1 parent 70c7dcb commit eae8d1e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "pyGroupedTransforms"
7-
version = "0.3.3"
7+
version = "0.3.4"
88
authors = [
99
{ name="Felix Wirth", email="fwi012001@gmail.com" },
1010
]

src/pyGroupedTransforms/GroupedCoefficients.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ def norms(self, Dict=False, other=None, m=None):
180180
d = len(self.settings[i].u)
181181
ac_in = 1
182182
freq = CWWTtools.cwwt_index_set(self.settings[i].bandwidths)
183-
if d == 1:
184-
freq = freq.T
183+
# if d == 1: TODO: Why????
184+
# freq = freq.T
185185

186186
for jj in range(freq.shape[1]):
187187
j = freq[:, jj]

0 commit comments

Comments
 (0)