NAG Library Routine Document

c09daf  (dim1_mxolap_fwd)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

c09daf computes the one-dimensional maximal overlap discrete wavelet transform (MODWT) at a single level. The initialization routine c09aaf must be called first to set up the MODWT options.

2
Specification

Fortran Interface
Subroutine c09daf ( n, x, lenc, ca, cd, icomm, ifail)
Integer, Intent (In):: n, lenc
Integer, Intent (Inout):: icomm(100), ifail
Real (Kind=nag_wp), Intent (In):: x(n)
Real (Kind=nag_wp), Intent (Out):: ca(lenc), cd(lenc)
C Header Interface
#include nagmk26.h
void  c09daf_ ( const Integer *n, const double x[], const Integer *lenc, double ca[], double cd[], Integer icomm[], Integer *ifail)

3
Description

c09daf computes the one-dimensional MODWT of a given input data array, xi, for i=1,2,,n, at a single level. For a chosen wavelet filter pair, the output coefficients are obtained by applying convolution to the input, x. The approximation (or smooth) coefficients, Ca, are produced by the low pass filter and the detail coefficients, Cd, by the high pass filter. Periodic (circular) convolution is available as an end extension method for application to finite data sets. The number nc, of coefficients Ca or Cd is returned by the initialization routine c09aaf.

4
References

Percival D B and Walden A T (2000) Wavelet Methods for Time Series Analysis Cambridge University Press

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 input dataset xi, for i=1,2,,n.
3:     lenc – IntegerInput
On entry: the dimension of the arrays ca and cd as declared in the (sub)program from which c09daf is called. This must be at least the number, nc, of approximation coefficients, Ca, and detail coefficients, Cd, of the discrete wavelet transform as returned in nwc by the call to the initialization routine c09aaf. Note that nc=n for periodic end extension, but this is not the case for other end extension methods which will be available in future releases.
Constraint: lencnc, where nc is the value returned in nwc by the call to the initialization routine c09aaf.
4:     calenc – Real (Kind=nag_wp) arrayOutput
On exit: cai contains the ith approximation coefficient, Cai, for i=1,2,,nc.
5:     cdlenc – Real (Kind=nag_wp) arrayOutput
On exit: cdi contains the ith detail coefficient, Cdi, for i=1,2,,nc.
6:     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.
7:     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, array dimension lenc not large enough: lenc=value but must be at least value.
ifail=6
On entry, the initialization routine c09aaf has not been called first or it has not been called with wtrans='T', or the communication array icomm has become 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

c09daf is not threaded in any implementation.

9
Further Comments

None.

10
Example

This example computes the one-dimensional maximal overlap discrete wavelet decomposition for 8 values using the Daubechies wavelet, wavnam='DB4'.

10.1
Program Text

Program Text (c09dafe.f90)

10.2
Program Data

Program Data (c09dafe.d)

10.3
Program Results

Program Results (c09dafe.r)

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