Difference between revisions of "Loop.R"

From Organic Design wiki
(Loop function)
 
m (formatting)
Line 6: Line 6:
 
start  <- 1
 
start  <- 1
 
loop    <- 8
 
loop    <- 8
comp <- 5
+
comp   <- 5
 
# seq makes a sequence from 1 to 8+5-1
 
# seq makes a sequence from 1 to 8+5-1
 
# %% yields he remainder of a division
 
# %% yields he remainder of a division

Revision as of 22:23, 11 December 2005

  1. ==============================================================================
  2. Loop evaluation e.g. 8 parts, 5 comparisons
  3. ==============================================================================


start <- 1 loop <- 8 comp <- 5

  1. seq makes a sequence from 1 to 8+5-1
  2.  %% yields he remainder of a division

loops <- seq(loop + comp - 1) %% loop

for(i in seq(loop)){

 print(loops[seq(from=i, length=comp)])

}