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}
|
21 15 45 36 19 22 36 24 17 42 48 24 42 25 34 11 46 41 28 26 49 16 20 44 24
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
34 29 11 26 40 27 24 23 25 16 20 48 33 22 43 31 38 14 37 46 28 50 36 17 21
|
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}
|
8192 32768 4096 65536 2048 512 32768 512 1024
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
521 449 157 461 7 997 457 101 107 223
|
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}
|
15 12 19 13 20 10 11 17 14 18 16
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
16 18 20 11 10
|
|