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}
|
10 50 49 24 30 19 22 19 21 21 48 47 20 27 26 32 35 23 20 22 18 21 46 41 27
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
29 10 24 17 22 12 15 47 33 41 48 39 21 50 18 38 28 42 36 46 20 26 19 27 31
|
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}
|
16384 2048 8192 512 8192 512 4096 256 32768
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
7 421 11 197 179 307 109 509 19 607
|
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}
|
10 15 11 18 20 12 16 17 19 14 13
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
14 10 19 11 20
|
|