Produces one or more samples from the multivariate (p variables) Cauchy distribution (MCD) with location parameter mu and scatter matrix Sigma.
rmcd(n, mu, Sigma, tol =1e-6)
Arguments
n: integer. Number of observations.
mu: length p numeric vector. The location parameter.
Sigma: symmetric, positive-definite square matrix of order p. The scatter matrix.
tol: tolerance for numerical lack of positive-definiteness in Sigma (for mvrnorm, see Details).
Returns
A matrix with p columns and n rows.
Details
A sample from a MCD with parameters μ and Σ
can be generated using:
X=μ+uY
where Y is a random vector distributed among a centered Gaussian density with covariance matrix Σ (generated using mvrnorm) and u is distributed among a Chi-squared distribution with 1 degree of freedom.