>From: mohamed nur anisah <[EMAIL PROTECTED]> >Date: 2008/02/15 Fri AM 07:13:15 CST >To: r-help@r-project.org >Subject: [R] help on loop function
a similar ( if not identical ? ) question was asked a few days ago and the answer is at the link below. http://article.gmane.org/gmane.comp.lang.r.general/106129 >Dear lists, > > Anysuggestion on how to write a loop function which has nx2 matrix as an > input, where each of the row represents an interval. the function should > return a mx2 matrix containing the no matched interval of x?? i've tried my > own function but it's only applies for 2x2 matrix. > > Here is my code: > > overlap<-function(x,y){ >m=length(x) >n=length(y) > for(i in 1:m){ > for(j in 1:n){ > if(x[i]>=y[j]) print(TRUE) > else print(FALSE) > } > } > } > > Many thanks!! > > Cheers, > Anisah > > >--------------------------------- > > [[alternative HTML version deleted]] > >______________________________________________ >R-help@r-project.org mailing list >https://stat.ethz.ch/mailman/listinfo/r-help >PLEASE do read the posting guide http://www.R-project.org/posting-guide.html >and provide commented, minimal, self-contained, reproducible code. ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.