[R] Why doesn't this nested loop work?

Kort, Eric Eric.Kort at vai.org
Wed Jan 4 17:11:42 CET 2006


Teresa Nelson
> Hi there,
> 
> 
> 
> I can get the for-loop to work, I can get the while loop to work.  But
I
> can't get a for loop to work nested within the while loop - why?
> 
> 
> 
> Please help,
> 
> Teresa

It actually does work, but I think the problem is with your matrix
indexing.  See the sample below.  

You could also check out ?seq, ?rep, and ?apply for solving this problem
with fewer lines of code.


 n.max <- 300
 NUM <- 25
 
 n.sim <- 10 
 j <- (n.max/NUM)*n.sim
 
 results <- matrix(0, nrow=j, ncol=2)
 
 while(NUM <= n.max){
 
 for(i in 1:n.sim){
 
 k <- (NUM/25)*i
 
 results[((NUM / 25) - 1) * n.sim + i, 1] <- k
 results[((NUM / 25) - 1) * n.sim + i, 2] <- NUM
 cat("Iteration", i, ": NUM=", NUM, "k=", k, "\n")
 
 } 
 
 NUM <- NUM + 25
 }
This email message, including any attachments, is for the so...{{dropped}}




More information about the R-help mailing list