Hello,

outer() is great for avoiding things like:

for (val1 in val1s) {
  for (val2 in val2s)) {
    x[i,j] <- somefunction(val1, val2)
  }
}

The same can be obtained with:

outer(val1s, val2s, somefunction)

But what if there are three (or more) sets of values to loop over? Any
way of avoiding the loops then?

Thanks,

-- 
Wolfgang Viechtbauer

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to