nag_imlmodwt (c09ddc) (PDF version)
c09 Chapter Contents
c09 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_imlmodwt (c09ddc)

+ Contents

    1  Purpose
    7  Accuracy
    10  Example

1  Purpose

nag_imlmodwt (c09ddc) computes the inverse one-dimensional multi-level maximal overlap discrete wavelet transform (MODWT). This function reconstructs data from (possibly filtered or otherwise manipulated) wavelet transform coefficients calculated by nag_mlmodwt (c09dcc) from an original set of data. The initialization function nag_wfilt (c09aac) must be called first to set up the MODWT options.

2  Specification

#include <nag.h>
#include <nagc09.h>
void  nag_imlmodwt (Integer nwlinv, Nag_WaveletCoefficients keepa, Integer lenc, const double c[], Integer n, double y[], const Integer icomm[], NagError *fail)

3  Description

nag_imlmodwt (c09ddc) performs the inverse operation of nag_mlmodwt (c09dcc). That is, given a set of wavelet coefficients computed by nag_mlmodwt (c09dcc) using a MODWT as set up by the initialization function nag_wfilt (c09aac) on a real array of length n, nag_imlmodwt (c09ddc) will reconstruct the data array yi, for i=1,2,,n, from which the coefficients were derived.

4  References

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

5  Arguments

1:     nwlinvIntegerInput
On entry: the number of levels to be used in the inverse multi-level transform. The number of levels must be less than or equal to nfwd, which has the value of argument nwl as used in the computation of the wavelet coefficients using nag_mlmodwt (c09dcc). The data will be reconstructed to level nwl-nwlinv, where level 0 is the original input dataset provided to nag_mlmodwt (c09dcc).
Constraint: 1nwlinvnfwd, where nfwd is the value used in a preceding call to nag_mlmodwt (c09dcc).
2:     keepaNag_WaveletCoefficientsInput
On entry: determines whether the approximation coefficients are stored in array c for every level of the computed transform or else only for the final level. In both cases, the detail coefficients are stored in c for every level computed.
keepa=Nag_StoreAll
Retain approximation coefficients for all levels computed.
keepa=Nag_StoreFinal
Retain approximation coefficients for only the final level computed.
Constraint: keepa=Nag_StoreAll or Nag_StoreFinal.
3:     lencIntegerInput
On entry: the dimension of the array c.
Constraints:
  • if keepa=Nag_StoreFinal, lencnl+1×na;
  • if keepa=Nag_StoreAll, lenc2×nl×na, where na is the number of approximation or detail coefficients at each level and is unchanged from the preceding call to nag_mlmodwt (c09dcc).
4:     c[lenc]const doubleInput
On entry: the coefficients of a multi-level wavelet transform of the dataset.
The coefficients are stored in c as follows:
If keepa=Nag_StoreFinal,
C1:na
Contains the level nl approximation coefficients;
Cna+i-1×nd+1:na+i×nd
Contains the level nl-i+1 detail coefficients, for i=1,2,,nl;
If keepa=Nag_StoreAll,
Ci-1×na+1:i×na
Contains the level nl-i+1 approximation coefficients, for i=1,2,,nl;
Cnl×na+i-1×nd+1:nl×na+i×nd
Contains the level i detail coefficients, for i=1,2,,nl.
The values na and nd denote the numbers of approximation and detail coefficients respectively, which are equal. This number is returned as output in na from a preceding call to nag_mlmodwt (c09dcc). See nag_mlmodwt (c09dcc) for details.
5:     nIntegerInput
On entry: n, the length of the data array, y, to be reconstructed.
Constraint: This must be the same as the value n passed to the initialization function nag_wfilt (c09aac).
6:     y[n]doubleOutput
On exit: the dataset reconstructed from the multi-level wavelet transform coefficients and the transformation options supplied to the initialization function nag_wfilt (c09aac).
7:     icomm[100]const IntegerCommunication Array
On entry: contains details of the discrete wavelet transform and the problem dimension for the forward transform previously computed by nag_mlmodwt (c09dcc).
8:     failNagError *Input/Output
The NAG error argument (see Section 3.6 in the Essential Introduction).

6  Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
NE_ARRAY_DIM_LEN
On entry, lenc is set too small: lenc=value.
Constraint: lencvalue.
NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_INITIALIZATION
On entry, n is inconsistent with the value passed to the initialization function: n=value, n should be value.
On entry, the initialization function nag_wfilt (c09aac) has not been called first or it has not been called with wtrans=Nag_MODWTMulti, or the communication array icomm has become corrupted.
NE_INT
On entry, nwlinv=value.
Constraint: nwlinv1.
NE_INT_2
On entry, nwlinv is larger than the number of levels computed by the preceding call to nag_mlmodwt (c09dcc): nwlinv=value, expected value.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.

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

None.

10  Example

See Section 10 in nag_mlmodwt (c09dcc).

nag_imlmodwt (c09ddc) (PDF version)
c09 Chapter Contents
c09 Chapter Introduction
NAG Library Manual

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