psev {SPREDA} | R Documentation |
The Standard Smallest Extreme Value Distribution
Description
The cdf, pdf, quantile function, and random number generation for the standard smallest extreme value distribution.
Usage
psev(z)
dsev(z)
qsev(p)
rsev(n)
Arguments
z |
Vector of values where the cdf or pdf to be evaluated. |
p |
Vector of probabilities where the quantile function to be evaluated. |
n |
Number of random samples. If input is a vector, then the number generated is the length of it. |
Value
psev
returns cdf, dsev
returns pdf, qsev
returns quantiles, and rsev
returns random samples.
Author(s)
Yili Hong
See Also
Examples
psev(c(2,3))
dsev(c(2,3))
qsev(0.1)
rsev(10)
[Package SPREDA version 1.1 Index]