@@ -186,7 +186,7 @@ function computeWavelets(n1::Integer,
186186 isAve = ! (typeof (c. averagingType) <: NoAve )
187187 # I guess matlab did occasionally do something useful
188188
189- ω = computeOmega (n1, nSpace, n)
189+ ω = computeOmega (n1, n)
190190 daughters = analyticOrNot (c, n, totalWavelets)
191191
192192 # if the nOctaves is small enough there are none not covered by the
@@ -230,7 +230,7 @@ function computeWavelets(n1::Integer,
230230 # indicates whether we should keep a spot for the father wavelet
231231 isAve = ! (typeof (c. averagingType) <: NoAve )
232232
233- ω = computeOmega (n1, nSpace, n)
233+ ω = computeOmega (n1, n)
234234 daughters = zeros (nSpace, totalWavelets)
235235 φ, ψ, ψLen = getContWaveFromOrtho (c, nSpace)
236236 itpψ = genInterp (ψ)
@@ -287,7 +287,7 @@ function analyticOrNot(c::CWT{W,T,<:Union{Morlet,Paul,Morse},N},
287287 return daughters
288288end
289289
290- function computeOmega (nOriginal, nSpace, nFreq)
290+ function computeOmega (nOriginal, nFreq)
291291 range (0 , nOriginal >> 1 + 1 , length = nFreq) # max size is the last frequency in the rfft of the original data size
292292end
293293# convenience methods
0 commit comments