NAG Library Routine Document
C09CCF
1 Purpose
C09CCF computes the one-dimensional multi-level discrete wavelet transform (DWT). The initialization routine
C09AAF must be called first to set up the DWT options.
2 Specification
INTEGER |
N, LENC, NWL, DWTLEV(NWL+1), ICOMM(100), IFAIL |
REAL (KIND=nag_wp) |
X(N), C(LENC) |
|
3 Description
C09CCF computes the multi-level DWT of one-dimensional data. For a given wavelet and end extension method, C09CCF will compute a multi-level transform of a data array,
, for
,
using a specified number,
, of levels. The number of levels specified,
, must be no more than the value
returned in
NWL by the initialization routine
C09AAF for the given problem. The transform is returned as a set of coefficients for the different levels (packed into a single array) and a representation of the multi-level structure.
The notation used here assigns level to the input dataset, , with level being the first set of coefficients computed, with the detail coefficients, , being stored while the approximation coefficients, , are used as the input to a repeat of the wavelet transform. This process is continued until, at level , both the detail coefficients, , and the approximation coefficients, are retained. The output array, , stores these sets of coefficients in reverse order, starting with followed by .
4 References
None.
5 Parameters
- 1: N – INTEGERInput
On entry: the number of elements, , in the data array .
Constraint:
this must be the same as the value
N passed to the initialization routine
C09AAF.
- 2: X(N) – REAL (KIND=nag_wp) arrayInput
On entry:
X contains the one-dimensional input dataset
, for
.
- 3: LENC – INTEGERInput
On entry: the dimension of the array
C as declared in the (sub)program from which C09CCF is called.
C must be large enough to contain the number,
, of wavelet coefficients. The maximum value of
is returned in
NWC by the call to the initialization routine
C09AAF and corresponds to the DWT being continued for the maximum number of levels possible for the given data set. When the number of levels,
, is chosen to be less than the maximum, then
is correspondingly smaller and
LENC can be reduced by noting that the number of coefficients at each level is given by
for
in
C09AAF and
for
,
or
, where
is the number of input data at that level and
is the filter length provided by the call to
C09AAF. At the final level the storage is doubled to contain the set of approximation coefficients.
Constraint:
, where
is the number of approximation and detail coefficients that correspond to a transform with
NWL levels.
- 4: C(LENC) – REAL (KIND=nag_wp) arrayOutput
On exit: let
denote the number of coefficients (of each type) produced by the wavelet transform at level
, for
. These values are returned in
DWTLEV. Setting
and
, for
, the coefficients are stored as follows:
- , for
- Contains the level approximation coefficients, .
- , for
- Contains the level detail coefficients .
- , for
- Contains the level
detail coefficients, for .
- 5: NWL – INTEGERInput
On entry: the number of levels, , in the multi-level resolution to be performed.
Constraint:
, where
is the value returned in
NWL (the maximum number of levels) by the call to the initialization routine
C09AAF.
- 6: DWTLEV() – INTEGER arrayOutput
On exit: the number of transform coefficients at each level.
and contain the number, , of approximation and detail coefficients respectively, for the final level of resolution (these are equal); contains the number of detail coefficients, , for the ()th level, for .
- 7: ICOMM() – INTEGER arrayCommunication Array
On entry: contains details of the discrete wavelet transform and the problem dimension as setup in the call to the initialization routine
C09AAF.
On exit: contains additional information on the computed transform.
- 8: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value is used it is essential to test the value of IFAIL on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6 Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Errors or warnings detected by the routine:
-
On entry,
N is inconsistent with the value passed to the initialization routine
C09AAF.
-
On entry,
, where
is the number of coefficients that will be generated given the chosen value of
NWL.
-
On entry, | , |
or | , where is the value returned in NWL by the call to the initialization routine C09AAF. |
-
On entry, the initialization routine
C09AAF has not been called first or it has been called with
, or the communication array
ICOMM has become corrupted.
7 Accuracy
The accuracy of the wavelet transform depends only on the floating point operations used in the convolution and downsampling and should thus be close to machine precision.
The wavelet coefficients at each level can be extracted from the output array
C using the information contained in
DWTLEV on exit (see the descriptions of
C and
DWTLEV in
Section 5). For example, given an input data set,
, denoising can be carried out by applying a thresholding operation to the detail coefficients at every level. The elements
, as described in
Section 5, contain the detail coefficients,
, for
and
, where
and
is the transformed noise term. If some threshold parameter
is chosen, a simple hard thresholding rule can be applied as
taking
to be an approximation to the required detail coefficient without noise,
. The resulting coefficients can then be used as input to
C09CDF in order to reconstruct the denoised signal.
See the references given in the introduction to this chapter for a more complete account of wavelet denoising and other applications.
9 Example
This example performs a multi-level resolution of a dataset using the Daubechies wavelet (see
in
C09AAF) using zero end extensions, the number of levels of resolution, the number of coefficients in each level and the coefficients themselves are reused. The original dataset is then reconstructed using
C09CDF.
9.1 Program Text
Program Text (c09ccfe.f90)
9.2 Program Data
Program Data (c09ccfe.d)
9.3 Program Results
Program Results (c09ccfe.r)