BNPdensity (version 2023.3.8)

qtnorm: Quantile function truncated normal

Description

Computes the quantiles.

Usage

qtnorm(
  p,
  mean = 0,
  sd = 1,
  lower = -Inf,
  upper = Inf,
  lower.tail = TRUE,
  log.p = FALSE
)

Arguments

Author

C. H. Jackson

Details

For internal use

References

Taken from

Examples

Run this code

## The function is currently defined as
function(p, mean = 0, sd = 1, lower = -Inf, upper = Inf, lower.tail = TRUE,
         log.p = FALSE) {
  qgeneric(ptnorm,
    p = p, mean = mean, sd = sd, lower = lower,
    upper = upper, lbound = lower, ubound = upper, lower.tail = lower.tail,
    log.p = log.p
  )
}

Run the code above in your browser using DataLab