Nice one - didn't think of the array at all as my brain was fixated on lists...
Thanks,
Murali
> Date: Fri, 24 May 2013 21:54:22 +0100
> From: ruipbarra...@sapo.pt
> To: fean...@hotmail.com
> CC: r-help@r-project.org
> Subject: Re: [R] matrix of random variables from a matrix
Hello,
The first instruction doesn't call rnorm just once but it seems more
appropriate for your problem;
The second instruction calls rnorm just once.
set.seed(59187)
res1 <- replicate(10, matrix(rnorm(4, mean = a, sd = b), ncol = 2))
set.seed(59187)
res2 <- array(rnorm(40, mean = a, sd = b
folks,
if i have a matrix of means:
a <- matrix(1:4, 2)
and a matrix of std deviations:
b <- matrix(5:8, 2)
and i want to create a matrix X of random variates such that X[i, j] is a draw
from normal distribution with mean = a[i, j] and std dev = b[i, j], i think i
can do this?
X <- matrix(rnorm(
3 matches
Mail list logo