Skip to content

Matrices with randomly generated entries

3 messages · jshort, David Winsemius, GlenB

#
I'm attempting to generate matrices where the entries are randomly generated
numbers of specified distribution.

The following code was an attempt to create a 3 by 3 matrix, where my
entries where randomly generated from a uniform (0,1) distribution.


x = matrix(0,ncol = 3, byrow = T)
for(i in 1:3) {
 for(j in 1:3) { x[i,j]= runif(1,0,1) }
}

The problem I get with the above code however is that I get an error message
which says the following;
 
"Error in x[i,j]= runif(1,0,1)  :   subscript out of bounds"

I haven't been able to figure out how to fix this. Any help would be much
appreciated.

jshort
#
On Jan 20, 2010, at 4:55 PM, jshort wrote:

            
> x = matrix(0,ncol = 3, byrow = T)
 > x
      [,1] [,2] [,3]
[1,]    0    0    0
Make your matrix large enough to accept the range of values for the  
indices.
David Winsemius, MD
Heritage Laboratories
West Hartford, CT