[R] unable to update the matrix values within a function

Ken Liu tyliu0522 at yahoo.com
Sat Jun 21 01:41:43 CEST 2008


Hi,

I don't understand why this doesn't work:

matTest <- matrix(nrow=3, ncol=3)
testMove <- function(I, J){
    for(i in 1:I){
        for(j in 1:J){
            matTest[i, j] <- i+j
        }
    }
}
testMove(2, 3)
matTest

Why the elements of the matrix matTest are still NA?  How could I fix it?

Thanks,
Ken



More information about the R-help mailing list