c09cac computes the one-dimensional discrete wavelet transform (DWT) at a single level. The initialization function c09aac must be called first to set up the DWT options.
The function may be called by the names: c09cac, nag_wav_dim1_sngl_fwd or nag_dwt.
3Description
c09cac computes the one-dimensional DWT of a given input data array,
, for ,
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, . The approximation (or smooth) coefficients, , are produced by the low pass filter and the detail coefficients, , by the high pass filter. 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 or zero end extension. The number , of coefficients or is returned by the initialization function c09aac.
4References
Daubechies I (1992) Ten Lectures on Wavelets SIAM, Philadelphia
5Arguments
1: – IntegerInput
On entry: the number of elements, , in the data array .
Constraint:
this must be the same as the value n passed to the initialization function c09aac.
On entry: the dimension of the arrays ca and cd. This must be at least the number, , of approximation coefficients, , and detail coefficients, , of the discrete wavelet transform as returned in nwc by the call to the initialization function c09aac.
Constraint:
, where is the value returned in nwc by the call to the initialization function c09aac.
4: – doubleOutput
On exit: contains the th approximation coefficient,
, for .
5: – doubleOutput
On exit: contains the th detail coefficient, , for .
6: – IntegerCommunication Array
On entry: contains details of the discrete wavelet transform and the problem dimension as setup in the call to the initialization function c09aac.
On exit: contains additional information on the computed transform.
7: – NagError *Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).
6Error 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, array dimension lenc not large enough: but must be at least .
NE_BAD_PARAM
On entry, argument had an illegal value.
NE_INITIALIZATION
Either the initialization function has not been called first or array icomm has been corrupted.
Either the initialization function was called with or array icomm has been corrupted.
On entry, n is inconsistent with the value passed to the initialization function: , n should be .
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.
7Accuracy
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.
8Parallelism and Performance
Background information to multithreading can be found in the Multithreading documentation.
c09cac is not threaded in any implementation.
9Further Comments
None.
10Example
This example computes the one-dimensional discrete wavelet decomposition for values using the Daubechies wavelet, , with zero end extension.