R/ulbound.R

Defines functions ulbound

ulbound <- function(wgt, minWgt, maxWgt) {

  wgt[wgt > maxWgt] <- maxWgt
  wgt[wgt < minWgt] <- minWgt

  return( wgt )

}

Try the VEwaning package in your browser

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

VEwaning documentation built on June 8, 2025, 10:29 a.m.