wavedec
Multilevel 1-D discrete wavelet transform
Description
[
returns the wavelet decomposition of the 1-D signal c
,l
] = wavedec(x
,n
,wname
)x
at level
n
using the wavelet wname
. The output
decomposition structure consists of the wavelet decomposition vector
c
and the bookkeeping vector l
, which
is used to parse c
.
Note
For gpuArray
inputs, the supported modes are
'symh'
('sym'
) and
'per'
. If the input is a gpuArray
,
the discrete wavelet transform extension mode used by
wavedec
defaults to 'symh'
unless the current extension mode is 'per'
. See the
example Multilevel Discrete Wavelet Transform on a GPU.
Examples
Input Arguments
Output Arguments
Algorithms
Given a signal s of length N, the DWT consists
of at most log2
N steps. Starting from s, the first step produces
two sets of coefficients: approximation coefficients
cA1 and detail coefficients
cD1. Convolving s
with the lowpass filter LoD
and the highpass filter
HiD
, followed by dyadic decimation (downsampling), results in the
approximation and detail coefficients respectively.
where
— Convolve with filter X
— Downsample (keep the even-indexed elements)
The length of each filter is equal to 2n. If N = length(s), the signals F and G are of length N + 2n −1 and the coefficients cA1 and cD1 are of length
floor.
The next step splits the approximation coefficients cA1 in two parts using the same scheme, replacing s by cA1, and producing cA2 and cD2, and so on.
The wavelet decomposition of the signal s analyzed at level j has the following structure: [cAj, cDj, ..., cD1].
This structure contains, for j = 3, the terminal nodes of the following tree:
References
[1] Daubechies, I. Ten Lectures on Wavelets, CBMS-NSF Regional Conference Series in Applied Mathematics. Philadelphia, PA: SIAM Ed, 1992.
[2] Mallat, S. G. “A Theory for Multiresolution Signal Decomposition: The Wavelet Representation,” IEEE Transactions on Pattern Analysis and Machine Intelligence. Vol. 11, Issue 7, July 1989, pp. 674–693.
[3] Meyer, Y. Wavelets and Operators. Translated by D. H. Salinger. Cambridge, UK: Cambridge University Press, 1995.
Extended Capabilities
Version History
Introduced before R2006a