Simulation from a multivariate normal distribution
Simulates a matrix where the rows are i.i.d. samples from a multivariate normal distribution
rmvnorm(n, mu, Sigma, Sigma.chol = chol(Sigma))
n
: sample sizemu
: multivariate mean vectorSigma
: covariance matrixSigma.chol
: Cholesky factorization of Sigma
a matrix with n
rows
Peter Hoff