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}
|
49 34 15 36 33 48 47 48 50 14 50 10 16 10 15 38 20 32 12 10 40 38 20 31 32
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
33 48 16 47 22 17 42 26 37 31 11 13 45 44 38 25 28 35 43 39 27 30 12 50 15
|
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 512 65536 32768 1024 65536 16384 256 256
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
271 83 661 379 139 479 173 907 193 149
|
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}
|
14 11 16 10 20 15 17 18 19 12 13
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
13 12 15 18 19
|
|