rmvlaplace: Multivariate Laplace random values simulation

View source: R/random_values_simulation.R

Multivariate Laplace random values simulationR Documentation

Multivariate Laplace random values simulation

Description

Multivariate Laplace random values simulation.

Usage

rmvlaplace(n, lam, mu, G, seed = NULL) 

Arguments

n

The sample size, a numerical value.

lam

The the parameter of the exponential distribution, a positive number.

mu

The mean vector.

G

A d \times d covariance matrix with determinant 1.

seed

If you want the same to be generated again use a seed for the generator, an integer number.

Details

The algorithm uses univariate normal random values and transforms them to multivariate via a spectral decomposition.

Value

A matrix with the simulated data.

Author(s)

Michail Tsagris

R implementation and documentation: Michail Tsagris <mtsagris@uoc.gr>

References

Eltoft T., Kim T., and Lee T.W. (2006). On the multivariate laplace distribution. Signal Processing Letters, IEEE, 13(5):300-303.

See Also

rmvnorm, racg, rmvt

Examples

m <- colmeans( as.matrix( iris[, 1:4] ) )
s <- cov(iris[,1:4])
s <- s / det(s)^0.25
lam <- 3
x <- rmvlaplace(100, lam, m, s)

Rfast documentation built on Nov. 9, 2023, 5:06 p.m.