rmvn | R Documentation |
Simulate from a multivariate normal distribution.
rmvn(n, mu = 0, V = matrix(1))
n |
Number of simulation replicates. |
mu |
Mean vector. |
V |
Variance-covariance matrix. |
Uses the Cholesky decomposition of the matrix V
, obtained by
base::chol()
.
A matrix of size n x length(mu)
. Each row corresponds to a
separate replicate.
stats::rnorm()
x <- rmvn(100, c(1,2),matrix(c(1,1,1,4),ncol=2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.