R/midwt.R

Defines functions midwt

Documented in midwt

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

##-----------------------------------------------------------------------------
midwt <- function(y, h, L) {
    .Call("do_midwt",
          as.matrix(y),
          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.