From 1fa4a5271df4a5f8d609b30cf7fa54990a24f0bb Mon Sep 17 00:00:00 2001 From: zymon Date: Sun, 19 May 2024 20:33:25 +0200 Subject: [PATCH] bugfix --- src/utils.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.jl b/src/utils.jl index 93137f7..3bcd509 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -52,7 +52,7 @@ function AllenBerkley_highpass100(x, fs) B2 = -R1 * R1 A1 = -(1+R1) - for i = 1:eachindex(x) + for i = eachindex(x) Y[3] = Y[2] Y[2] = Y[1] Y[1] = B2*Y[3] + B1*Y[2] + x[i]