something like this should do it:
breakFlag <- FALSE
For (k in 1:100)
For ( i in 1:10){
If ( condition ){
breakFlag <- TRUE
break
}
}
if (breakFlag) break
}
On Tue, Jan 6, 2009 at 7:58 PM, kayj <
kjaja27@...> wrote:
--
Jim Holtman
Cincinnati, OH
+1 513 646 9390
What is the problem that you are trying to solve?
______________________________________________
R-help@... mailing list
https://stat.ethz.ch/mailman/listinfo/r-helpPLEASE do read the posting guide
http://www.R-project.org/posting-guide.htmland provide commented, minimal, self-contained, reproducible code.