Skip to content

Commit

Permalink
Merge pull request #43 from dsweber2/master
Browse files Browse the repository at this point in the history
docs actually run
  • Loading branch information
dsweber2 authored Aug 27, 2023
2 parents cdeefa5 + 5b660a2 commit b0b813e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ julia> p1 = plot(t, f, legend=false, title="Doppler", xticks=false)
Plot{Plots.PyPlotBackend() n=1}

julia> c = wavelet(Morlet(π), β=2)

CWT{Morlet mean 3.141592653589793, Father Wavelet, Q=8.0, β=2.0,aveLen=0.0, frame=1.0, norm=Inf, extraOctaves=0.0}

julia> res = ContinuousWavelets.cwt(f, c)
Expand Down Expand Up @@ -91,7 +90,6 @@ It can also handle collections of examples at the same time, should you need to
julia> exs = cat(testfunction(n, "Doppler"), testfunction(n, "Blocks"), testfunction(n, "Bumps"), testfunction(n, "HeaviSine"), dims=2);

julia> c = wavelet(cDb2, β=2, extraOctaves=-0)

CWT{Continuous db2, Father Wavelet, Q=8.0, β=2.0,aveLen=0.0, frame=1.0, norm=Inf, extraOctaves=0.0}

julia> res = circshift(ContinuousWavelets.cwt(exs, c), (0, 1, 0))
Expand Down
8 changes: 2 additions & 6 deletions docs/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ julia> t = range(0, n / 1000, length=n); # 1kHz sampling rate
julia> f = testfunction(n, "Doppler");
julia> c = wavelet(Morlet(π), β=2)
CWT{Morlet mean 3.141592653589793, Father Wavelet, Q=8.0, β=2.0,aveLen=0.0, frame=1.0, norm=Inf, extraOctaves=0.0}
julia> c = wavelet(Morlet(π), β=2);
julia> res = ContinuousWavelets.cwt(f, c)
┌ Warning: the lowest frequency wavelet has more than 1% its max at zero, so it may not be analytic. Think carefully
Expand Down Expand Up @@ -111,9 +109,7 @@ julia> using Wavelets
julia> exs = cat(testfunction(n, "Doppler"), testfunction(n, "Blocks"), testfunction(n, "Bumps"), testfunction(n, "HeaviSine"), dims=2);
julia> c = wavelet(cDb2, β=2, extraOctaves=-0)
CWT{Continuous db2, Father Wavelet, Q=8.0, β=2.0,aveLen=0.0, frame=1.0, norm=Inf, extraOctaves=0.0}
julia> c = wavelet(cDb2, β=2, extraOctaves=-0);
julia> res = circshift(ContinuousWavelets.cwt(exs, c), (0, 1, 0))
┌ Warning: the highest frequency wavelet has more than 1% its max at the end, so it may not be analytic. Think carefully
Expand Down

0 comments on commit b0b813e

Please sign in to comment.