Nothing
rmn <- function(k, M, U, V) {
n <- dim(M)[1] ; p <- dim(M)[2]
A <- chol(U) ; B <- chol(V)
Y <- list()
for ( i in 1:k ) {
X <- Rfast::matrnorm(n, p)
Y[[ i ]] <- M + A %*% X %*% B
}
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.