R/qgamma3.R

Defines functions qgamma3

Documented in qgamma3

qgamma3 <-
function(p,shape=1,scale=1,thres=0,lower.tail=TRUE,log.p=FALSE)
{
	if(log.p) p <- exp(p)
	if(!lower.tail) p <- 1 - p
	xF <- qgamma(p,shape,1/scale)+thres
	return(xF)
}
tpetzoldt/FAdist documentation built on March 4, 2022, 12:42 a.m.