Boundary Conditions
ContinuousWavelets.WaveletBoundary
— Typethe abstract type for the various types of boundaries
ContinuousWavelets.PerBoundary
— TypePerBoundary() <: WaveletBoundary
standard periodic boundary assumption made by the fft. Aliases of NaivePer
and Periodic
.
ContinuousWavelets.ZPBoundary
— TypeZPBoundary() <: WaveletBoundary
zero pads the signal before doing an fft, rounding up to the nearest power of two. Alias of padded
.
ContinuousWavelets.SymBoundary
— TypeSymBoundary() <: WaveletBoundary
symmetric boundary, as in the DCT type II. Repeats the edge value, which alleviates derivative discontinuities. Alias of DEFAULT_BOUNDARY
and SymBound
.