Description Usage Arguments Value Author(s) References See Also Examples
Dual-tree complex 2D discrete wavelet transform (DWT).
1 2  | cplxdual2D(x, J, Faf, af)
icplxdual2D(w, J, Fsf, sf)
 | 
x | 
 2D array.  | 
w | 
 wavelet coefficients.  | 
J | 
 number of stages.  | 
Faf | 
 first stage analysis filters for tree i.  | 
af | 
 analysis filters for the remaining stages on tree i.  | 
Fsf | 
 last stage synthesis filters for tree i.  | 
sf | 
 synthesis filters for the preceeding stages.  | 
For the analysis of x, the output is
w | 
 wavelet coefficients indexed by
  | 
For the synthesis of w, the output is 
y | 
 output signal.  | 
Matlab: S. Cai, K. Li and I. Selesnick; R port: B. Whitcher
WAVELET SOFTWARE AT POLYTECHNIC UNIVERSITY, BROOKLYN, NY
http://taco.poly.edu/WaveletSoftware/
FSfarras, farras, afb2D, 
sfb2D.
1 2 3 4 5 6 7 8 9 10 11 12 13 14  | ## Not run: 
## EXAMPLE: cplxdual2D
x = matrix(rnorm(32*32), 32, 32)
J = 5
Faf = FSfarras()$af
Fsf = FSfarras()$sf
af = dualfilt1()$af
sf = dualfilt1()$sf
w = cplxdual2D(x, J, Faf, af)
y = icplxdual2D(w, J, Fsf, sf)
err = x - y
max(abs(err))
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.