NAG Library Routine Document

c09faf (dim3_sngl_fwd)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

c09faf computes the three-dimensional discrete wavelet transform (DWT) at a single level. The initialization routine c09acf must be called first to set up the DWT options.

2
Specification

Fortran Interface
Subroutine c09faf ( m, n, fr, a, lda, sda, lenc, c, icomm, ifail)
Integer, Intent (In):: m, n, fr, lda, sda, lenc
Integer, Intent (Inout):: icomm(260), ifail
Real (Kind=nag_wp), Intent (In):: a(lda,sda,fr)
Real (Kind=nag_wp), Intent (Inout):: c(lenc)
C Header Interface
#include nagmk26.h
void  c09faf_ (const Integer *m, const Integer *n, const Integer *fr, const double a[], const Integer *lda, const Integer *sda, const Integer *lenc, double c[], Integer icomm[], Integer *ifail)

3
Description

c09faf computes the three-dimensional DWT of some given three-dimensional input data, considered as a number of two-dimensional frames, at a single level. For a chosen wavelet filter pair, the output coefficients are obtained by applying convolution and downsampling by two to the input data, A, first over columns, next over rows and finally across frames. The three-dimensional approximation coefficients are produced by the low pass filter over columns, rows and frames. In addition there are 7 sets of three-dimensional detail coefficients, each corresponding to a different order of low pass and high pass filters (see the C09 Chapter Introduction). All coefficients are packed into a single array. To reduce distortion effects at the ends of the data array, several end extension methods are commonly used. Those provided are: periodic or circular convolution end extension, half-point symmetric end extension, whole-point symmetric end extension and zero end extension. The total number, nct, of coefficients computed is returned by the initialization routine c09acf.

4
References

Daubechies I (1992) Ten Lectures on Wavelets SIAM, Philadelphia

5
Arguments

1:     m – IntegerInput
On entry: the number of rows of each two-dimensional frame.
Constraint: this must be the same as the value m passed to the initialization routine c09acf.
2:     n – IntegerInput
On entry: the number of columns of each two-dimensional frame.
Constraint: this must be the same as the value n passed to the initialization routine c09acf.
3:     fr – IntegerInput
On entry: the number of two-dimensional frames.
Constraint: this must be the same as the value fr passed to the initialization routine c09acf.
4:     aldasdafr – Real (Kind=nag_wp) arrayInput
On entry: the m by n by fr three-dimensional input data A, where Aijk is stored in aijk.
5:     lda – IntegerInput
On entry: the first dimension of the array a as declared in the (sub)program from which c09faf is called.
Constraint: ldam.
6:     sda – IntegerInput
On entry: the second dimension of the array a as declared in the (sub)program from which c09faf is called.
Constraint: sdan.
7:     lenc – IntegerInput
On entry: the dimension of the array c as declared in the (sub)program from which c09faf is called.
Constraint: lencnct, where nct is the total number of wavelet coefficients, as returned by c09acf.
8:     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 c09fyf or c09fzf is recommended. For completeness the following description provides details of precisely how the coefficients are stored in c but this information should only be required in rare cases.
The 8 sets of coefficients are stored in the following order: approximation coefficients (LLL) first, followed by 7 sets of detail coefficients: LLH, LHL, LHH, HLL, HLH, HHL, HHH, where L indicates the low pass filter, and H the high pass filter being applied to, respectively, the columns of length m, the rows of length n and then the frames of length fr. Note that for computational efficiency reasons each set of coefficients is stored in the order ncfr×ncm×ncn (see output arguments nwcfr, nwct and nwcn in c09acf). See Section 10 for details of how to access each set of coefficients in order to perform extraction from c following a call to this routine, or insertion into c before a call to the three-dimensional inverse routine c09fbf.
9:     icomm260 – 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 c09acf.
On exit: contains additional information on the computed transform.
10:   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, fr=value.
Constraint: fr=value, the value of fr on initialization (see c09acf).
On entry, m=value.
Constraint: m=value, the value of m on initialization (see c09acf).
On entry, n=value.
Constraint: n=value, the value of n on initialization (see c09acf).
ifail=2
On entry, lda=value and m=value.
Constraint: ldam.
On entry, sda=value and n=value.
Constraint: sdan.
ifail=3
On entry, lenc=value and nct=value.
Constraint: lencnct, where nct is the number of DWT coefficients returned by c09acf in argument nwct.
ifail=6
Either the communication array icomm has been corrupted or there has not been a prior call to the initialization routine c09acf.
The initialization routine was called with wtrans='M'.
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

c09faf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9
Further Comments

None.

10
Example

This example computes the three-dimensional discrete wavelet decomposition for 5×4×3 input data using the Haar wavelet, wavnam='HAAR', with half point end extension, prints the wavelet coefficients and then reconstructs the original data using c09fbf. This example also demonstrates in general how to access any set of coefficients following a single level transform.

10.1
Program Text

Program Text (c09fafe.f90)

10.2
Program Data

Program Data (c09fafe.d)

10.3
Program Results

Program Results (c09fafe.r)

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