mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-15 14:50:25 +01:00
fix: Bug in Corr.Hankel fixed
This commit is contained in:
parent
1196935e4e
commit
091f19def1
1 changed files with 2 additions and 2 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue