represents a Paul wavelet of order 4.
PaulWavelet[n]
represents a Paul wavelet of order n.
PaulWavelet
represents a Paul wavelet of order 4.
PaulWavelet[n]
represents a Paul wavelet of order n.
Details
- PaulWavelet defines a family of complex non-orthogonal wavelets.
- The wavelet function (
) is given by
. - PaulWavelet can be used with such functions as ContinuousWaveletTransform and WaveletPsi, etc.
Examples
open all close allBasic Examples (2)
Scope (3)
WaveletPsi[PaulWavelet[3], x]Wavelet function as a function of order n:
FormulaGrid[list_] := Grid[list, Alignment -> Center, Background -> {None, {{StandardGray, Orange}}}, Dividers -> {None, {Darker[Gray, .6], {False}, Darker[Gray, .6]}}, ItemSize -> {{Scaled[.1], Scaled[.9]}}, ItemStyle -> {{14}, 16}]FormulaGrid[Table[{k, Simplify@WaveletPsi[PaulWavelet[k], x]}, {k, 1, 5}]]PaulWavelet is used to perform ContinuousWaveletTransform:
f[t_] := Piecewise[{{Sin[2π 10t], 0 ≤ t < (1/4)}, {Sin[2π 25t], (1/4) ≤ t < (1/2)}, {Sin[2π 50t], (1/2) ≤ t < (3/4)}, {Sin[2π 100t], (3/4) ≤ t ≤ 1}}]data = Table[f[t], {t, 0, 1, (1/1023)}];ListLinePlot[data]cwt = ContinuousWaveletTransform[data, PaulWavelet[4], {8, 12}, Padding -> 0.0, SampleRate -> 1023]Use WaveletScalogram to get a time scale representation of wavelet coefficients:
WaveletScalogram[cwt]Use InverseWaveletTransform to reconstruct the signal:
ListLinePlot[{data, InverseContinuousWaveletTransform[cwt]}]Properties & Relations (3)
Wavelet function integrates to zero;
:
Integrate[WaveletPsi[PaulWavelet[3], x], {x, -∞, ∞}]Wavelet function and its Fourier transform:
ψ = WaveletPsi[PaulWavelet[4], x]Plot[{Re[ψ], Im[ψ]}, {x, -5, 5}, PlotRange -> All, PlotStyle -> {Automatic, Dashed}, Frame -> True, GridLines -> Automatic]Overscript[ψ, ^ ] = FourierTransform[ψ, x, ω, FourierParameters -> {0, -2Pi}]Plot[Overscript[ψ, ^ ], {ω, -1, 2}, PlotRange -> All]PaulWavelet does not have a scaling function:
WaveletPhi[PaulWavelet[6], x]See Also
Related Guides
History
Text
Wolfram Research (2010), PaulWavelet, Wolfram Language function, https://reference.wolfram.com/language/ref/PaulWavelet.html.
CMS
Wolfram Language. 2010. "PaulWavelet." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/PaulWavelet.html.
APA
Wolfram Language. (2010). PaulWavelet. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/PaulWavelet.html
BibTeX
@misc{reference.wolfram_2026_paulwavelet, author="Wolfram Research", title="{PaulWavelet}", year="2010", howpublished="\url{https://reference.wolfram.com/language/ref/PaulWavelet.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_paulwavelet, organization={Wolfram Research}, title={PaulWavelet}, year={2010}, url={https://reference.wolfram.com/language/ref/PaulWavelet.html}, note=[Accessed: 13-June-2026]}