Calculation of the coefficients for the discrete wavelet transformation
dwt(x, nlevels = floor(log2(length(x))), filter = "haar")
A field<vec>
that contains the wavelet coefficients for each decomposition level
A vector
with dimensions N x 1.
A integer
indicating the
A string
indicating the filter name
James Balamuta, Justin Lee and Stephane Guerrier
Performs a level
set.seed(999)
x = rnorm(2^8)
ret = dwt(x)
summary(ret)
plot(ret)
Run the code above in your browser using DataLab