search for: 20times

Displaying 1 result from an estimated 1 matches for "20times".

Did you mean: 20time
2008 Jul 30
1
problem with nested loops
...all, I have a problem with constructing a nested loop. I have two matrices: pnr: 800 rows 14 columns where rows are 40x20 meaning that 40 rows belong to one of twenty objects in the matrix pnr mvp: 20 rows and 14 columns I want to: calculate a distance value with the first 40 rows of pnr but 20times with the 1st row of mvp then the next 40 rows of pnr and 20times with the second row of mvp and so on. in total 20 times. i tried with: > dim(p) [1] 800 14 > dim(mvp) [1] 20 14 specdist <-matrix(NA,nrow=40,ncol=20) for (j in 1:40){ for(i in 1:20){ specdist[j,i]<-sqrt((pnr[...