qtnorm: Quantile function truncated normal

View source: R/qtnorm.R

qtnormR Documentation

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
)

Details

For internal use

Note

Taken from msm R-package.

Author(s)

C. H. Jackson

References

Taken from

Examples


## 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
  )
}

BNPdensity documentation built on April 1, 2023, 12:10 a.m.