R/alpha_logis.R

Defines functions alpha_logis

alpha_logis <- function(x){
  value <- 1/(1+exp(-(x-1)))
  return(value)
}

#curve(alpha_logis(x), from = 0, to = 5,
#      ylim = c(0,1))

Try the GRIDCOPULA package in your browser

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

GRIDCOPULA documentation built on May 6, 2026, 9:06 a.m.