rmvnorm_ {groupedHyperframe.random} | R Documentation |
Batch Process of Random Multivariate Normal Generation
Description
Batch process of random multivariate normal generation mvrnorm2.
Usage
rmvnorm_(n, mu, Sigma, ...)
Arguments
n |
integer scalar |
mu |
list, each element is passed to parameter |
Sigma |
list, each element is passed to parameter |
... |
additional parameters of function mvrnorm |
Value
Function rmvnorm_()
returns a list of matrixes.
Examples
rmvnorm_(n = 5L, mu = list(a = c(0, 3), b = c(3, 7)), Sigma = list(a = .5, b = 1.2))
rmvnorm_(n = 5L, mu = list(a = 0, b = c(3, 7)), Sigma = list(a = .5, b = 1.2))
[Package groupedHyperframe.random version 0.1.0 Index]