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}
|
40 37 13 45 25 22 12 47 46 14 25 11 47 17 41 39 48 21 27 20 20 33 12 27 26
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
45 14 23 32 38 37 15 35 12 18 20 29 42 40 28 27 26 31 17 36 47 34 16 24 46
|
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}
|
4096 1024 2048 8192 16384 4096 8192 256 16384
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
251 661 773 257 859 151 859 733 659 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}
|
10 15 12 13 11 19 18 20 16 14 17
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
11 16 12 18 10
|
|