R/inv.logit.R

##############################################
#Title: Inverse-Logit function         		 #
#Author: Lindsey Dietz          			 #
#Last Modified: 4/8/13					     #
#Description: Computes f(x)=exp(x)/(1+exp(x))#
##############################################
inv.logit<-function(x){
	exp(x)/(1+exp(x))
}

Try the msim package in your browser

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

msim documentation built on May 2, 2019, 5:50 p.m.