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}
|
17 11 33 31 17 48 47 25 36 17 34 35 20 44 42 14 32 19 44 42 49 27 36 11 28
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
34 10 21 18 46 16 27 11 26 37 45 17 15 14 20 30 12 35 22 13 36 44 48 31 29
|
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}
|
512 256 1024 65536 512 8192 1024 16384 2048
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
59 491 281 941 149 11 937 881 449 389
|
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}
|
18 12 10 13 20 16 19 15 14 11 17
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
14 13 19 18 20
|
|