Skip to content

Commit 3f99be8

Browse files
Fix parameter passing in _z_n_fast_cached call
1 parent 866a6e4 commit 3f99be8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hendrics/ffa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def z_n_fast_cached(norm, n=2):
133133
cached_sin = cached_sin_harmonics(norm.size, n)
134134
cached_cos = cached_cos_harmonics(norm.size, n)
135135

136-
return _z_n_fast_cached(norm, cached_sin, cached_cos, n=2)
136+
return _z_n_fast_cached(norm, cached_sin, cached_cos, n=n)
137137

138138

139139
@njit()

0 commit comments

Comments
 (0)