R/InverseExponential.R

Defines functions levinvexp minvexp rinvexp qinvexp pinvexp

Documented in levinvexp minvexp pinvexp qinvexp rinvexp

### actuar: Actuarial Functions and Heavy Tailed Distributions
###
### Definition of the {d,p,q,r,m,lev}invexp functions to compute
### characteristics of the Inverse Exponential distribution. The
### version used in these functions has cumulative distribution
### function
###
###   Pr[X <= x] = exp(-scale/x), x > 0.
###
### See Appendix A of Klugman, Panjer & Willmot, Loss Models, Wiley.
###
### AUTHORS:  Mathieu Pigeon, Vincent Goulet <vincent.goulet@act.ulaval.ca>

dinvexp <- function (x, rate = 1, scale = 1/rate, log = FALSE)
    .External(C_actuar_do_dpq, "dinvexp", x, scale, log)

pinvexp <- function(q, rate = 1, scale = 1/rate,
                    lower.tail = TRUE, log.p = FALSE)
    .External(C_actuar_do_dpq, "pinvexp", q, scale, lower.tail, log.p)

qinvexp <- function(p, rate = 1, scale = 1/rate,
                    lower.tail = TRUE, log.p = FALSE)
    .External(C_actuar_do_dpq, "qinvexp", p, scale, lower.tail, log.p)

rinvexp <- function(n, rate = 1, scale = 1/rate)
    .External(C_actuar_do_random, "rinvexp", n, scale)

minvexp <- function(order, rate = 1, scale = 1/rate)
    .External(C_actuar_do_dpq, "minvexp", order, scale, FALSE)

levinvexp <- function(limit, rate = 1, scale = 1/rate, order)
    .External(C_actuar_do_dpq, "levinvexp", limit, scale, order, FALSE)

Try the actuar package in your browser

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

actuar documentation built on Nov. 8, 2023, 9:06 a.m.