To give an overview of this thread, first of all I will show the speeds associated with the several methods used (so you can draw your own conclusion about which is the best), then I will show you how you could use a function; i.e. the way you intended your function probably.
n <- 1000000
> system.time(cbind(runif(n, -1, 1), runif(n, -1, 1)))
user system elapsed
0.28 0.03 0.31
> system.time(matrix(runif(2*n, min = -1, max = 1), ncol = 2))
user system elapsed
0.32 0.00 0.33
> system.time(replicate(2, runif(n, -1, 1)))
user system elapsed
0.26 0.02 0.35
Here is the function, and the time benchmark:
getPoints <- function (N) {
pointMatrix <- matrix(1, nrow = 1000000, ncol = 2)
for (i in 1:N) {
pointMatrix[i, ] <- runif(2, -1, 1) # it needs to run for all columns
}
}
> system.time(getPoints(n))
user system elapsed
17.59 0.04 19.94
>