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}
|
48 26 45 18 36 11 12 19 29 13 33 14 50 34 13 24 46 13 19 18 12 49 22 14 42
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
33 42 31 22 16 48 13 50 43 23 17 18 40 38 21 11 36 39 14 29 19 37 10 45 41
|
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}
|
1024 65536 16384 4096 65536 256 2048 32768 4096
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
127 677 307 863 173 163 863 223 911 401
|
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 13 19 20 11 16 12 17 14 15 18
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
14 17 16 13 15
|
|