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}
|
35 36 23 42 18 15 49 13 32 48 36 18 36 32 39 32 22 46 35 12 16 22 19 22 30
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
42 17 11 49 32 25 18 43 10 19 14 12 30 29 27 38 41 33 24 21 35 15 23 22 36
|
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 2048 32768 4096 32768 4096 2048 16384 16384
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
103 373 431 151 257 353 73 673 431 2
|
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}
|
16 11 14 12 19 15 20 17 10 13 18
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
11 20 14 13 12
|
|