fix: Bug in Corr.Hankel fixed

This commit is contained in:
Fabian Joswig 2022-02-08 14:31:38 +00:00
parent 1196935e4e
commit 091f19def1

View file

@ -350,8 +350,8 @@ class Corr:
new_content.append(array.copy())
def wrap(i):
if i >= self.T:
return i - self.T
while i >= self.T:
i -= self.T
return i
for t in range(self.T):