R/dllog.R

Defines functions dllog

Documented in dllog

dllog <-
function(x,shape=1,scale=1,log=FALSE)
{
	fx <- dlogis(log(x),location=scale,scale=shape,log=FALSE)/x
	if(log) return(log(fx))
	else return(fx)
}
tpetzoldt/FAdist documentation built on March 4, 2022, 12:42 a.m.