These functions are used internally by package distrEx.
.getIntbounds(object, low, upp, lowTQ, uppTQ, IQR.fac, ...)an object of class "AbscontDistribution"
given lower integration bound
given lower integration bound
lower quantile for quantile based integration range.
upper quantile for quantile based integration range.
factor for scale based integration range (i.e.;
median of the distribution \(\pm\)IQR.fac\(\times\)IQR).
arguments passed through to other functions (in particular argument
cond in .getIntbounds)
a named numeric vector with coordinates low and upp.
.getIntbounds integration bounds are obtained
as lowB <- max(low, q.l(object)(lowTQ), median(object)-IQR.fac*IQR(object)
and uppB <- min(upp, q.l(object)(1-uppTQ), median(object)+IQR.fac*IQR(object)