I have a matrix in which I want to zero certain specific elements.
For instance, imagine that my matrix is:
m <- matrix(1:100, ncol=10)
I then have two vectors indicating which elements to keep
m.from <- c(2, 5, 4, 4, 6, 3, 1, 4, 2, 5)
m.to <- c(7, 9, 6, 8, 9, 5, 6, 8, 4, 8)
So, for instance I will keep elements 3:6 in row 1, and set element 1:2 and 7:10 to 0. For line 2 I will keep 6:8 and zero the rest, and so on.
Now, I could easily do:
for (line in 1:nrow(m))
{
m[line, 1:m.from[line]] <- 0
m[line, m.to[line]:ncol(m)] <- 0
}
which gives the correct result.
In my specific case, however, I am operating on a ~15000 x 3000 matrix which makes using this kind of loop excruciatingly long.
How can I speed up this code? I though of using apply, but how do I access the correct index of m.from and m.to?

m.fromandm.toas additional columns to your matrix. Then anapplysolution would be trivial, and you might even be able to vectorize it. – joran Sep 20 '12 at 16:07