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}
|
29 23 50 33 17 18 48 34 18 44 30 50 38 31 18 39 31 13 47 16 39 19 50 10 44
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
17 45 43 25 33 44 39 37 48 31 35 41 21 46 27 47 50 11 32 28 16 23 42 20 38
|
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}
|
32768 4096 1024 2048 4096 32768 256 8192 2048
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
37 397 79 811 401 379 257 829 293 457
|
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 17 19 10 12 15 16 13 20 18
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
12 19 10 13 18
|
|