UCD4IDS / ContinuousWavelets.jl

wide array of continuous wavelet transforms using Julia
https://dsweber2.github.io/ContinuousWavelets.jl/dev/
Other
21 stars 7 forks source link

Duplicate `morsefreq` #29

Closed henry2004y closed 2 years ago

henry2004y commented 2 years ago

There are two versions of the morsefreq method, one in src/utils.jl and the other in src/createWavelets.jl. These two are identical in arguments, and the current include ordering in src/ContinuousWavelets.jl makes the latter the one actually being used.

However, there is one tiny difference between the two versions. The one in utils has one extra line which divides the frequency by 2pi, which I guess converts the output into angular frequency

https://github.com/UCD4IDS/ContinuousWavelets.jl/blob/712e04c0d6d6446747ba945edc8f6de12954d6ec/src/utils.jl#L24