all parms random randomize randomize_vs_shuffle total
There are main 3 ways for randomizing, a sequence (random), an option (randomly) and an action (randomize)
The sequence 'random'
|
HTML
|
RESULT
|
{sequence random, rows=25, minimal=10, maximal=50 } {$sequence} {/sequence}
|
18 23 42 19 30 22 46 48 22 11 10 46 10 26 47 31 13 43 50 38 19 10 12 32 34
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
10 34 20 21 40 29 11 37 17 38 32 50 46 18 25 39 44 47 35 33 24 13 28 15 36
|
The sequence option 'randomly'
Here the loop index is randomly set before the sequence is executed.
|
HTML
|
RESULT
|
{sequence power=2, rows=10, randomly, from=8, to=16} {$sequence} {/sequence}
|
4096 32768 256 16384 4096 4096 32768 16384 32768
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
643 269 131 983 149 617 241 827 167 859
|
The sequence action 'randomize'
|
HTML
|
RESULT
|
{sequence from=10, to=20, push='mySeq'}
|
|
{mySeq} {$sequence} {/mySeq}
|
10 11 12 13 14 15 16 17 18 19 20
|
{mySeq randomize } {$sequence} {/mySeq}
|
18 14 20 19 11 10 12 15 16 17 13
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
12 18 20 11 17
|
|