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}
|
12 46 27 47 44 21 10 16 11 36 21 50 38 27 49 50 12 34 10 31 29 19 38 23 19
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
20 21 34 41 49 31 29 33 23 39 13 44 37 12 47 36 17 19 15 14 46 24 26 27 28
|
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}
|
2048 1024 8192 65536 65536 512 4096 1024 16384
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
5 601 653 631 821 79 491 659 17 59
|
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 12 10 19 15 13 20 18 17 11 16
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
19 15 17 12 11
|
|