R/logis.R

Defines functions logis

Documented in logis

## This is just a logistic growth function
logis <- function(x, Asym, xmid, scal){

  ans <- Asym / (1 + exp((xmid - x)/scal))

  return(ans)

}

Try the nlraa package in your browser

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

nlraa documentation built on May 2, 2019, 5 p.m.