[R] Matrices with randomly generated entries
jshort
jshort1985 at gmail.com
Wed Jan 20 22:55:53 CET 2010
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
--
View this message in context: http://n4.nabble.com/Matrices-with-randomly-generated-entries-tp1018777p1018777.html
Sent from the R help mailing list archive at Nabble.com.
More information about the R-help
mailing list