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

NAG Library Routine Document

C09ECF

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

1  Purpose

C09ECF computes the two-dimensional multi-level discrete wavelet transform (DWT). The initialization routine C09ABF must be called first to set up the DWT options.

2  Specification

SUBROUTINE C09ECF ( M, N, A, LDA, LENC, C, NWL, DWTLVM, DWTLVN, ICOMM, IFAIL)
INTEGER  M, N, LDA, LENC, NWL, DWTLVM(NWL), DWTLVN(NWL), ICOMM(180), IFAIL
REAL (KIND=nag_wp)  A(LDA,N), C(LENC)

3  Description

C09ECF computes the multi-level DWT of two-dimensional data. For a given wavelet and end extension method, C09ECF will compute a multi-level transform of a matrix A, 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 C09ABF 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 matrix, A. Level 1 consists of the first set of coefficients computed: the vertical (v1), horizontal (h1) and diagonal (d1) coefficients are stored at this level while the approximation (a1) coefficients are used as the input to a repeat of the wavelet transform at the next level. This process is continued until, at level nfwd, all four types of coefficients are stored. The output array, C, stores these sets of coefficients in reverse order, starting with anfwd followed by vnfwd , hnfwd , dnfwd , v nfwd-1 , h nfwd-1 , d nfwd-1 , , v1 , h1 , d1 .

4  References

None.

5  Parameters

1:     M – INTEGERInput
On entry: number of rows, m, of data matrix A.
Constraint: this must be the same as the value M passed to the initialization routine C09ABF.
2:     N – INTEGERInput
On entry: number of columns, n, of data matrix A.
Constraint: this must be the same as the value N passed to the initialization routine C09ABF.
3:     ALDAN – REAL (KIND=nag_wp) arrayInput
On entry: the m by n data matrix A.
4:     LDA – INTEGERInput
On entry: the first dimension of the array A as declared in the (sub)program from which C09ECF is called.
Constraint: LDAM.
5:     LENC – INTEGERInput
On entry: the dimension of the array C as declared in the (sub)program from which C09ECF is called. C must be large enough to contain, nct, wavelet coefficients. The maximum value of nct is returned in NWCT by the call to the initialization routine C09ABF 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, lmax, then nct is correspondingly smaller and LENC can be reduced by noting that the vertical, horizontal and diagonal coefficients are stored at every level and that in addition the approximation coefficients are stored for the final level only. The number of coefficients stored at each level is given by 3× m-/2 × n-/2  for MODE='P' in C09ABF and 3× m-+nf-1 / 2 × n-+nf-1 / 2  for MODE='H', 'W' or 'Z', where the input data is of dimension m-×n- at that level and nf is the filter length NF provided by the call to C09ABF. At the final level the storage is 4/3 times this value to contain the set of approximation coefficients.
Constraint: LENCnct, where nct is the total number of coefficients that correspond to a transform with NWL levels.
6:     CLENC – REAL (KIND=nag_wp) arrayOutput
On exit: the coefficients of the discrete wavelet transform. If you need to access or modify the approximation coefficients or any specific set of detail coefficients then the use of C09EYF or C09EZF is recommended. For completeness the following description provides details of precisely how the coefficient are stored in C but this information should only be required in rare cases.
Let qi denote the number of coefficients (of each type) at level i, for i=1,2,,nfwd, such that qi = DWTLVM nfwd - i + 1 × DWTLVN nfwd - i + 1 . Then, letting k1=qnfwd and kj+1=kj+qnfwd-j/3+1, for j=1,2,,3nfwd, the coefficients are stored in C as follows:
Ci, for i=1,2,,k1
Contains the level nfwd approximation coefficients, anfwd.
Ci, for i=kj+1,,kj+1
Contains the level nfwd-j/3+1 vertical, horizontal and diagonal coefficients. These are:
  • vertical coefficients if j mod 3=1;
  • horizontal coefficients if j mod 3=2;
  • diagonal coefficients if j mod 3=0,
for j=1,,3nfwd.
7:     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 C09ABF.
8:     DWTLVMNWL – INTEGER arrayOutput
On exit: the number of coefficients in the first dimension for each coefficient type at each level. DWTLVMi contains the number of coefficients in the first dimension (for each coefficient type computed) at the (nfwd-i+1)th level of resolution, for i=1,2,,nfwd. Thus for the first nfwd-1 levels of resolution, DWTLVMnfwd-i+1 is the size of the first dimension of the matrices of vertical, horizontal and diagonal coefficients computed at this level; for the final level of resolution, DWTLVM1 is the size of the first dimension of the matrices of approximation, vertical, horizontal and diagonal coefficients computed.
9:     DWTLVNNWL – INTEGER arrayOutput
On exit: the number of coefficients in the second dimension for each coefficient type at each level. DWTLVNi contains the number of coefficients in the second dimension (for each coefficient type computed) at the (nfwd-i+1)th level of resolution, for i=1,2,,nfwd. Thus for the first nfwd-1 levels of resolution, DWTLVNnfwd-i+1 is the size of the second dimension of the matrices of vertical, horizontal and diagonal coefficients computed at this level; for the final level of resolution, DWTLVN1 is the size of the second dimension of the matrices of approximation, vertical, horizontal and diagonal coefficients computed.
10:   ICOMM180 – 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 C09ABF.
On exit: contains additional information on the computed transform.
11:   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, M=value.
Constraint: M=value, the value of M on initialization (see C09ABF).
On entry, N=value.
Constraint: N=value, the value of N on initialization (see C09ABF).
IFAIL=2
On entry, LDA=value and M=value.
Constraint: LDAM.
IFAIL=3
On entry, LENC=value.
Constraint: LENCvalue, the total number of coefficents to be generated.
IFAIL=5
On entry, NWL=value.
Constraint: NWL1.
On entry, NWL=value and NWLMAX=value in C09ABF.
Constraint: NWLNWLMAX in C09ABF.
IFAIL=7
Either the initialization routine has not been called first or ICOMM has been corrupted.
Either the initialization routine was called with WTRANS='S' or ICOMM has been corrupted.
IFAIL=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.8 in the Essential Introduction for further information.
IFAIL=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.7 in the Essential Introduction for further information.
IFAIL=-999
Dynamic memory allocation failed.
See Section 3.6 in the Essential Introduction 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

Not applicable.

9  Further Comments

The wavelet coefficients at each level can be extracted from the output array C using the information contained in DWTLVM and DWTLVN on exit (see the descriptions of C, DWTLVM and DWTLVN in Section 5). For example, given an input data set, A, denoising can be carried out by applying a thresholding operation to the detail (vertical, horizontal and diagonal) coefficients at every level. The elements Ck1+1  to Cknfwd+1, as described in Section 5, contain the detail coefficients, c^ij, for i=nfwd,nfwd-1,,1 and j=1,2,,3qi, where qi is the number of each type of coefficient at level i and c^ij=cij+σεij and σεij is the transformed noise term. If some threshold parameter α is chosen, a simple hard thresholding rule can be applied as
c- ij = 0, if ​ c^ij α c^ij , if ​ c^ij > α,  
taking c-ij to be an approximation to the required detail coefficient without noise, cij. The resulting coefficients can then be used as input to C09EDF in order to reconstruct the denoised signal. See Section 10 in C09EZF for a simple example of denoising.
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 transform of a dataset using the Daubechies wavelet (see WAVNAM='DB2' in C09ABF) using half-point symmetric end extensions, the maximum possible number of levels of resolution, where the number of coefficients in each level and the coefficients themselves are not changed. The original dataset is then reconstructed using C09EDF.

10.1  Program Text

Program Text (c09ecfe.f90)

10.2  Program Data

Program Data (c09ecfe.d)

10.3  Program Results

Program Results (c09ecfe.r)


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

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