NAG CL Interface
c09ddc (dim1_​mxolap_​multi_​inv)

Settings help

CL Name Style:


1 Purpose

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 c09dcc from an original set of data. The initialization function c09aac must be called first to set up the MODWT options.

2 Specification

#include <nag.h>
void  c09ddc (Integer nwlinv, Nag_WaveletCoefficients keepa, Integer lenc, const double c[], Integer n, double y[], const Integer icomm[], NagError *fail)
The function may be called by the names: c09ddc, nag_wav_dim1_mxolap_multi_inv or nag_imlmodwt.

3 Description

c09ddc performs the inverse operation of c09dcc. That is, given a set of wavelet coefficients computed by c09dcc using a MODWT as set up by the initialization function c09aac on a real array of length n, 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: nwlinv Integer Input
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 c09dcc. The data will be reconstructed to level (nwl-nwlinv), where level 0 is the original input dataset provided to c09dcc.
Constraint: 1nwlinvnfwd, where nfwd is the value used in a preceding call to c09dcc.
2: keepa Nag_WaveletCoefficients Input
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: lenc Integer Input
On entry: the dimension of the array c.
Constraints:
  • if keepa=Nag_StoreFinal, lenc(nl+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 c09dcc.
4: c[lenc] const double Input
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,
C(1:na)
Contains the level nl approximation coefficients;
C(na+(i-1)×nd+1:na+i×nd)
Contains the level (nl-i+1) detail coefficients, for i=1,2,,nl;
If keepa=Nag_StoreAll,
C((i-1)×na+1:i×na)
Contains the level (nl-i+1) approximation coefficients, for i=1,2,,nl;
C(nl×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 c09dcc. See c09dcc for details.
5: n Integer Input
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 c09aac.
6: y[n] double Output
On exit: the dataset reconstructed from the multi-level wavelet transform coefficients and the transformation options supplied to the initialization function c09aac.
7: icomm[100] const Integer Communication Array
On entry: contains details of the discrete wavelet transform and the problem dimension for the forward transform previously computed by c09dcc.
8: fail NagError * Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).

6 Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 3.1.2 in the Introduction to the NAG Library CL Interface for further information.
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 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 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.
See Section 7.5 in the Introduction to the NAG Library CL Interface for further information.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library CL Interface 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

c09ddc is not threaded in any implementation.

9 Further Comments

None.

10 Example

See c09dcc.