R/mdwt.R

Defines functions mdwt

Documented in mdwt

###
### $Id: mdwt.R 35 2022-05-31 05:53:13Z proebuck $
### Computes the discrete wavelet transform y for a 1D or 2D input
###          signal x using the scaling filter h.
###

##-----------------------------------------------------------------------------
mdwt <- function(x, h, L) {
    .Call("do_mdwt",
          as.matrix(x),
          as.vector(h),
          as.integer(L),
          PACKAGE="rwt")
}

Try the rwt package in your browser

Any scripts or data that you put into this service are public.

rwt documentation built on June 14, 2022, 5:07 p.m.