R/superLogistic.R

"superLogistic" <-
  function(sumT, par, lambda) {
    ## par is a list, elements theta_1, theta_2, theta_3

    for (i in 1:length(par)) {
      theta_1 <- par[[i]][1]
      theta_2 <- par[[i]][2]
      theta_3 <- par[[i]][3]
      sumT <- sumT + (lambda + theta_1) / (theta_2 + exp(-theta_3))
    }
    sumT
  }

Try the TIMP package in your browser

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

TIMP documentation built on Dec. 28, 2022, 3:06 a.m.