R/softTh.R

Defines functions softTh

Documented in softTh

###
### $Id: softTh.R 35 2022-05-31 05:53:13Z proebuck $
###

##
## Public
##

##-----------------------------------------------------------------------------
softTh <- function(y, thld) {
    x <- abs(y)
    x <- sign(y) * (x >= thld) * (x - thld)

    x
}

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.