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}
|
45 16 50 36 47 29 24 10 44 20 10 32 26 23 40 47 35 44 15 40 45 47 11 27 11
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
18 31 43 11 17 14 45 46 35 49 19 23 24 38 33 20 47 39 13 34 25 21 32 36 26
|
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}
|
8192 256 16384 512 1024 32768 512 2048 16384
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
677 599 653 97 47 199 163 239 211 751
|
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}
|
13 16 20 18 11 10 17 12 15 19 14
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
14 17 15 10 11
|
|