R/logist3.R

#' @export
logist3 <-
function (x, a, b, c) 
{
#                                logist3

# VALUE 3-parameter logistic function
#
xx <- exp(-(x - b)/c)
y <- a/(1 + xx)

return(y)
}

Try the forsearch package in your browser

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

forsearch documentation built on April 4, 2025, 5:52 a.m.