NAG Library Routine Document

c09ccf (dim1_multi_fwd)

 Contents

    1  Purpose
    7  Accuracy

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

Fortran Interface
Subroutine c09ccf ( n, x, lenc, c, nwl, dwtlev, icomm, ifail)
Integer, Intent (In):: n, lenc, nwl
Integer, Intent (Inout):: icomm(100), ifail
Integer, Intent (Out):: dwtlev(nwl+1)
Real (Kind=nag_wp), Intent (In):: x(n)
Real (Kind=nag_wp), Intent (Out):: c(lenc)
C Header Interface
#include nagmk26.h
void  c09ccf_ (const Integer *n, const double x[], const Integer *lenc, double c[], const Integer *nwl, Integer dwtlev[], Integer icomm[], Integer *ifail)

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, xi, for i=1,2,,n, using a specified number, nfwd, of levels. The number of levels specified, nfwd, must be no more than the value lmax returned in nwlmax 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 0 to the input dataset, x, with level 1 being the first set of coefficients computed, with the detail coefficients, d1, being stored while the approximation coefficients, a1, are used as the input to a repeat of the wavelet transform. This process is continued until, at level nfwd, both the detail coefficients, dnfwd, and the approximation coefficients, anfwd are retained. The output array, C, stores these sets of coefficients in reverse order, starting with anfwd followed by dnfwd,dnfwd-1,,d1.

4
References

None.

5
Arguments

1:     n – IntegerInput
On entry: the number of elements, n, in the data array x.
Constraint: this must be the same as the value n passed to the initialization routine c09aaf.
2:     xn – Real (Kind=nag_wp) arrayInput
On entry: x contains the one-dimensional input dataset xi, for i=1,2,,n.
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, nc, of wavelet coefficients. The maximum value of nc 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, nfwd, is chosen to be less than the maximum, then nc is correspondingly smaller and lenc can be reduced by noting that the number of coefficients at each level is given by n-/2 for mode='P' in c09aaf and n-+nf-1/2 for mode='H', 'W' or 'Z', where n- is the number of input data at that level and nf 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: lencnc, where nc is the number of approximation and detail coefficients that correspond to a transform with nwlmax levels.
4:     clenc – Real (Kind=nag_wp) arrayOutput
On exit: let qi denote the number of coefficients (of each type) produced by the wavelet transform at level i, for i=nfwd,nfwd-1,,1. These values are returned in dwtlev. Setting k1=qnfwd and kj+1=kj+qnfwd-j+1, for j=1,2,,nfwd, the coefficients are stored as follows:
ci, for i=1,2,,k1
Contains the level nfwd approximation coefficients, anfwd.
ci, for i=k1+1,,k2 
Contains the level nfwd detail coefficients dnfwd.
ci, for i=kj+1,,kj+1
Contains the level nfwd-j+1 detail coefficients, for j=2,3,,nfwd.
5:     nwl – IntegerInput
On entry: the number of levels, nfwd, in the multi-level resolution to be performed.
Constraint: 1nwllmax, where lmax is the value returned in nwlmax (the maximum number of levels) by the call to the initialization routine c09aaf.
6:     dwtlevnwl+1 – Integer arrayOutput
On exit: the number of transform coefficients at each level. dwtlev1 and dwtlev2 contain the number, qnfwd, of approximation and detail coefficients respectively, for the final level of resolution (these are equal); dwtlevi contains the number of detail coefficients, qnfwd-i+2, for the (nfwd-i+2)th level, for i=3,4,,nfwd+1.
7:     icomm100 – 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 0, -1​ or ​1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this argument, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6
Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, n is inconsistent with the value passed to the initialization routine: n=value, n should be value.
ifail=3
On entry, lenc is set too small: lenc=value.
Constraint: lencvalue.
ifail=5
On entry, nwl=value.
Constraint: nwl1.
On entry, nwl is larger than the maximum number of levels returned by the initialization routine: nwl=value, maximum =value.
ifail=7
Either the initialization routine has not been called first or array icomm has been corrupted.
Either the initialization routine was called with wtrans='S' or array icomm has been corrupted.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

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.

8
Parallelism and Performance

c09ccf is not threaded in any implementation.

9
Further Comments

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, x, denoising can be carried out by applying a thresholding operation to the detail coefficients at every level. The elements ci, for i = k1+1 ,, k nfwd + 1 , as described in Section 5, contain the detail coefficients, d^ij, for i=nfwd,nfwd-1,,1 and j=1,2,,qi, where d^ij=dij+σεij and σεij is the transformed noise term. If some threshold parameter α is chosen, a simple hard thresholding rule can be applied as
d- ij = 0, if ​ d^ij α d^ij , if ​ d^ij > α,  
taking d-ij to be an approximation to the required detail coefficient without noise, dij. 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.

10
Example

This example performs a multi-level resolution of a dataset using the Daubechies wavelet (see wavnam='DB4' 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.

10.1
Program Text

Program Text (c09ccfe.f90)

10.2
Program Data

Program Data (c09ccfe.d)

10.3
Program Results

Program Results (c09ccfe.r)

© The Numerical Algorithms Group Ltd, Oxford, UK. 2017