C09CDF (PDF version)
C09 Chapter Contents
C09 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

C09CDF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy
    9  Example

1  Purpose

C09CDF computes the inverse one-dimensional multi-level discrete wavelet transform (DWT). This routine reconstructs data from (possibly filtered or otherwise manipulated) wavelet transform coefficients calculated by C09CCF from an original set of data. The initialization routine C09AAF must be called first to set up the DWT options.

2  Specification

SUBROUTINE C09CDF ( NWL, LENC, C, N, Y, ICOMM, IFAIL)
INTEGER  NWL, LENC, N, ICOMM(100), IFAIL
REAL (KIND=nag_wp)  C(LENC), Y(N)

3  Description

C09CDF performs the inverse operation of C09CCF. That is, given a set of wavelet coefficients, computed by C09CCF using a DWT as set up by the initialization routine C09AAF, on a real data array of length n, C09CDF will reconstruct the data array yi, for i=1,2,,n, from which the coefficients were derived. If the original input dataset is level 0, then it is possible to terminate reconstruction at a higher level by specifying fewer than the number of levels used in the call to C09CCF. This results in a partial reconstruction.

4  References

None.

5  Parameters

1:     NWL – INTEGERInput
On entry: the number, nl, of levels to be used in the inverse multi-level transform. The number of levels must less than or equal to the number used in the computation of the wavelet coefficients.
Constraint: 1NWLnfwd, where nfwd is the value used in a preceding call to C09CCF.
2:     LENC – INTEGERInput
On entry: the dimension of the array C as declared in the (sub)program from which C09CDF is called.
Constraint: LENCnc, where nc is the total number of coefficients that correspond to a transform with nfwd levels and is unchanged from the preceding call to C09CCF.
3:     C(LENC) – REAL (KIND=nag_wp) arrayInput
On entry: the coefficients of a multi-level wavelet transform of the dataset.
Let qi be the number of coefficients (of each type) at level i, for i=nfwd,nfwd-1,,1. Then, setting k1=qnfwd and kj+1=kj+qnfwd-j+1, for j=1,2,,nfwd, the coefficients are stored in C 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.
The values qi, for i=nfwd,nfwd-1,,1, are contained in DWTLEV which is produced as output by a preceding call to C09CCF. See C09CCF for details.
4:     N – INTEGERInput
On entry: n, the length of the data array, y, to be reconstructed. For a full reconstruction from nfwd levels, this is the same as parameter N in the preceding call to C09CCF. For a partial reconstruction of nl<nfwd levels, this will be equal to DWTLEVnl+2 as returned from C09CCF.
5:     Y(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the dataset reconstructed from the multi-level wavelet transform coefficients and the transformation options supplied to the initialization routine C09AAF.
6:     ICOMM(100) – INTEGER arrayCommunication Array
On entry: contains details of the discrete wavelet transform and the problem dimension for the forward transform previously computed by C09CCF.
7:     IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. 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 -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 parameter, 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,NWL<1,
orNWL> the number of levels used in the computation of the wavelet coefficients by a call to C09CCF.
IFAIL=2
On entry, LENC is too small. LENC must be at least the number of wavelet coefficients required for a transform operating on NWL levels. If NWL=lmax, the maximum number of levels as returned in NWL by the initial call to C09AAF, then LENC must be at least nc, the value returned in NWC by the same call to C09AAF.
IFAIL=4
On entry, N is too small for the required level of reconstruction.
IFAIL=6
On entry, the initialization routine C09AAF has not been called first or it has been called with WTRANS='S', 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.

8  Further Comments

None.

9  Example

See Section 9 in C09CCF.

C09CDF (PDF version)
C09 Chapter Contents
C09 Chapter Introduction
NAG Library Manual

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