R/qlgamma3.R

Defines functions qlgamma3

Documented in qlgamma3

qlgamma3 <-
function(p,shape=1,scale=1,thres=1,lower.tail=TRUE,log.p=FALSE)
{
	if(log.p) p <- exp(p)
	if(!lower.tail) p <- 1 - p
	xF <- exp(qgamma3(p,shape,1/scale,thres))
	return(xF)
}

Try the FAdist package in your browser

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

FAdist documentation built on March 18, 2022, 5:24 p.m.