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}
|
32 49 38 45 44 18 30 14 44 36 44 25 24 46 22 13 20 27 17 12 11 14 35 27 12
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
20 29 33 41 46 24 31 40 19 26 34 16 28 21 23 15 13 32 27 36 47 30 37 10 50
|
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}
|
32768 65536 65536 4096 512 1024 32768 512 16384
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
337 601 163 701 89 887 389 271 953 503
|
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 11 20 17 14 16 13 12 19 15 18
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
14 19 16 13 17
|
|