From 9f90dc0c6a9aea0084e85bd2076c8ce130a10213 Mon Sep 17 00:00:00 2001 From: David Widmann Date: Wed, 9 Aug 2023 11:49:10 +0200 Subject: [PATCH] Fix typo --- src/definitions.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/definitions.jl b/src/definitions.jl index 718abd7..943718f 100644 --- a/src/definitions.jl +++ b/src/definitions.jl @@ -724,9 +724,9 @@ function adjoint_mul(p::Plan{T}, x::AbstractArray, ::IRFFTAdjointStyle) where {T z = map(y, CartesianIndices(y)) do yj, j i = j[halfdim] zj = if i == 1 || (i == n && 2 * (i - 1) == d) - zj / N + yj / N else - 2 * zj / N + 2 * yj / N end return zj end