rssg {mixSSG} | R Documentation |
Simulating skewed sub-Gaussian stable random vector.
Description
Each skewed sub-Gaussian stable (SSG) random vector , admits the representation
where is location vector,
is skewness vector,
is a positive definite symmetric dispersion matrix, and
is tail thickness. Further,
is a positive stable random variable,
, and
. We note that
,
, and
are mutually independent.
Usage
rssg(n, alpha, Mu, Sigma, Lambda)
Arguments
n |
the number of samples required. |
alpha |
the tail thickness parameter. |
Mu |
a vector giving the location parameter. |
Sigma |
a positive definite symmetric matrix specifying the dispersion matrix. |
Lambda |
a vector giving the skewness parameter. |
Value
simulated realizations of size from the skewed sub-Gaussian stable distribution.
Author(s)
Mahdi Teimouri
Examples
n <- 4
alpha <- 1.4
Mu <- rep(0, 2)
Sigma <- diag(2)
Lambda <- rep(2, 2)
rssg(n, alpha, Mu, Sigma, Lambda)
[Package mixSSG version 2.1.1 Index]