From 718865e80bbd376826120be602c4a991cf738b75 Mon Sep 17 00:00:00 2001 From: CompatHelper Julia Date: Sat, 16 Sep 2023 00:04:58 +0000 Subject: [PATCH 1/3] CompatHelper: bump compat for Documenter to 1, (keep existing compat) --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index c94095e..e1c33ea 100644 --- a/Project.toml +++ b/Project.toml @@ -14,7 +14,7 @@ Wavelets = "29a6e085-ba6d-5f35-a997-948ac2efa89a" [compat] AbstractFFTs = "1.0" -Documenter = "0.27" +Documenter = "0.27, 1" FFTW = "1.4" Interpolations = "0.13, 0.14" SpecialFunctions = "1.3, 2" From 183d58048b7dfff6393b3ba8123587af864c4ccf Mon Sep 17 00:00:00 2001 From: CompatHelper Julia Date: Sat, 25 Nov 2023 00:04:00 +0000 Subject: [PATCH 2/3] CompatHelper: bump compat for Interpolations to 0.15, (keep existing compat) --- Project.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 7f7d66e..cf73991 100644 --- a/Project.toml +++ b/Project.toml @@ -16,11 +16,11 @@ Wavelets = "29a6e085-ba6d-5f35-a997-948ac2efa89a" AbstractFFTs = "1.0" Documenter = "0.27, 1" FFTW = "1.4" -Interpolations = "0.13, 0.14" +Interpolations = "0.13, 0.14, 0.15" +LinearAlgebra = "1" SpecialFunctions = "1.3, 2" Wavelets = "0.9, 0.10" julia = "1" -LinearAlgebra = "1" [extras] Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" From e2a73fb215d9d96b62fe87c5ac0a56fde56d49c3 Mon Sep 17 00:00:00 2001 From: Jonathan Bieler Date: Mon, 15 Jul 2024 15:32:58 +0200 Subject: [PATCH 3/3] Update apply.jl Fix typo in docstring (dualFrames -> DualFrames) --- src/apply.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apply.jl b/src/apply.jl index 5fc057b..a1fb828 100644 --- a/src/apply.jl +++ b/src/apply.jl @@ -260,7 +260,7 @@ Return the inverse continuous wavelet transform, computed using the simple dual icwt(res::AbstractArray, cWav::CWT, inverseStyle::NaiveDelta) Return the inverse continuous wavelet transform, computed using the simple dual frame ``β_jδ_{ji}``, where ``β_j`` is chosen to negate the scale factor ``(^1/_s)^{^1/_p}``. Generally less accurate than choosing the weights using `PenroseDelta`. This is the method discussed in Torrence and Compo. - icwt(res::AbstractArray, cWav::CWT, inverseStyle::dualFrames) + icwt(res::AbstractArray, cWav::CWT, inverseStyle::DualFrames) Return the inverse continuous wavelet transform, computed using the canonical dual frame ``\\tilde{\\widehat{ψ}} = \\frac{ψ̂_n(ω)}{∑_n\\|ψ̂_n(ω)\\|^2}``. The algorithm is to compute the cwt again, but using the canonical dual frame; consequentially, it is the most computationally intensive of the three algorithms, and typically the best behaved. Will be numerically unstable if the high frequencies of all of the wavelets are too small however, and tends to fail spectacularly in this case. """