R/dllog3.R

Defines functions dllog3

Documented in dllog3

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