R/mirdwt.R

Defines functions mirdwt

Documented in mirdwt

###
### $Id: mirdwt.R 35 2022-05-31 05:53:13Z proebuck $
### Computes the inverse redundant discrete wavelet 
###            transform x for a 1D or 2D input signal.
###

##-----------------------------------------------------------------------------
mirdwt <- function(yl, yh, h, L) {
    .Call("do_mirdwt",
          as.matrix(yl),
          as.matrix(yh),
          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.