powered by
Density, distribution function, quantile function, and random generation for the univariate elliptic distribution.
dec(x, object = ecd())pec(q, object = ecd())qec(p, object = ecd(with.quantile = TRUE), debug = FALSE)rec(n, object = ecd(with.quantile = TRUE))
pec(q, object = ecd())
qec(p, object = ecd(with.quantile = TRUE), debug = FALSE)
rec(n, object = ecd(with.quantile = TRUE))
numeric vector of quantiles.
an object of ecd-class. To achieve high performance for qec and rec, it should be created with with.quantile=TRUE.
ecd-class
qec
rec
with.quantile=TRUE
numeric vector of probabilities.
logical, whether to print debug message, default is FALSE.
FALSE
number of observations.
dec gives the density, pec gives the distribution function, qec gives the quantile function, rec generates random deviates.
dec
pec
# NOT RUN { d <- ecd(with.quantile=TRUE) x <- seq(-20, 20, by=5) dec(x,d) pec(x,d) p <- c(0.0001, 0.001, 0.01, 0.99, 0.999, 0.9999) qec(p,d) rec(100,d) # }
Run the code above in your browser using DataLab