Difference between revisions of "Loop.R"
From Organic Design wiki
m |
m |
||
Line 5: | Line 5: | ||
start <- 1 | start <- 1 | ||
− | loop <- | + | loop <- 6 |
− | comp <- | + | comp <- 4 |
# seq makes a sequence from 1 to 8+5-1 | # seq makes a sequence from 1 to 8+5-1 | ||
# %% yields the modulus remainder of a division | # %% yields the modulus remainder of a division |
Revision as of 00:55, 12 December 2005
- ==============================================================================
- Loop evaluation e.g. 8 parts, 5 comparisons
- ==============================================================================
start <- 1
loop <- 6
comp <- 4
- seq makes a sequence from 1 to 8+5-1
- %% yields the modulus remainder of a division
loops <- seq(loop + comp - 1) %% loop
for(i in seq(loop)){
print(loops[seq(from=i, length=comp)])
}