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 49 27 28 17 30 44 26 37 11 20 46 26 18 50 36 29 22 25 12 34 25 18 44 37
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
50 45 31 25 22 40 18 44 47 17 34 49 48 11 46 42 13 29 19 23 38 43 26 12 20
|
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 512 512 1024 65536 16384 512 256 1024
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
577 3 617 317 701 797 421 983 181 419
|
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 16 17 15 10 11 20 18 19 12 13
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
15 10 20 16 12
|
|