Density of a Multivariate Cauchy Distribution
Density of the multivariate ( variables) Cauchy distribution (MCD) with location parameter mu
and scatter matrix Sigma
.
dmcd(x, mu, Sigma, tol = 1e-6)
x
: length numeric vector.mu
: length numeric vector. The location parameter.Sigma
: symmetric, positive-definite square matrix of order . The scatter matrix.tol
: tolerance (relative to largest eigenvalue) for numerical lack of positive-definiteness in Sigma.The value of the density.
The density function of a multivariate Cauchy distribution is given by:
mu <- c(0, 1, 4) sigma <- matrix(c(1, 0.6, 0.2, 0.6, 1, 0.3, 0.2, 0.3, 1), nrow = 3) dmcd(c(0, 1, 4), mu, sigma) dmcd(c(1, 2, 3), mu, sigma)
rmcd
: random generation from a MCD.
estparmcd
: estimation of the parameters of a MCD.
plotmvd
, contourmvd
: plot of the probability density of a bivariate distribution.
Pierre Santagostini, Nizar Bouhlel
Useful links