Nothing
rmvnorm <- function(n, Mu, Sigma)
{
Dim <- length( Mu )
Y <- matrix(NA, nrow = n, ncol = Dim)
L <- t( chol( Sigma ) )
for(i in 1:n)
{
Y[i, ] <- L %*% rnorm( Dim ) + Mu
}
return( Y )
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.