[R] removing for loop

Peter Dalgaard p.dalgaard at biostat.ku.dk
Tue Jul 4 11:49:14 CEST 2006


vincent at 7d4.com writes:

> Dear Rusers,
> 
> Trying to reduce my for loops addiction,
> could somebody tell me if there are ways to simplify
> (and perhaps accelerate ?) the following line
> 
> for (i in 1:N) for (j in 1:N) m[i,j] = b[i]-b[j];
> 
> (where m is a NxN matrix and b a vector of length N)
> 
> Thanks for any hint.

m <- outer(b, b, "-") 

-- 
   O__  ---- Peter Dalgaard             Øster Farimagsgade 5, Entr.B
  c/ /'_ --- Dept. of Biostatistics     PO Box 2099, 1014 Cph. K
 (*) \(*) -- University of Copenhagen   Denmark          Ph:  (+45) 35327918
~~~~~~~~~~ - (p.dalgaard at biostat.ku.dk)                  FAX: (+45) 35327907



More information about the R-help mailing list