R/I_logistic.R

# Logistic                             R -> (0, 1)
# and inverse logistic (logit)         (0, 1) -> R 
# transformations

.logistic  <- function(x) 1 / (1 + exp(-x))

.ilogistic <- function(x) log( x / (1 - x) )
mfasiolo/synlik_release documentation built on May 22, 2019, 7:55 p.m.