qhalfcauchy {BNPdensity} | R Documentation |
Computes the quantiles.
qhalfcauchy(p, location = 0, scale = 1)
For internal use
## The function is currently defined as
function(p, location = 0, scale = 1) {
qcauchy(p * (1 - pcauchy(0, location, scale)) + pcauchy(
0,
location, scale
), location, scale)
}