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}
|
34 22 50 14 31 16 15 43 17 46 18 46 12 10 12 25 17 36 43 15 40 39 35 35 41
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
42 47 24 15 31 44 50 10 39 36 46 14 22 21 40 35 11 38 20 19 23 33 26 29 34
|
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}
|
65536 16384 8192 65536 256 8192 256 256 256
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
17 659 953 179 601 719 2 967 727 839
|
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}
|
12 19 14 11 20 10 13 18 17 15 16
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
10 16 14 11 17
|
|