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}
|
28 32 28 14 11 35 47 41 31 12 29 20 42 12 26 22 13 45 39 38 30 47 10 44 40
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
18 23 30 12 25 17 16 43 10 50 14 49 19 32 36 48 31 33 40 24 45 41 38 39 34
|
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}
|
1024 2048 2048 32768 4096 65536 512 4096 65536
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
613 139 379 149 317 307 521 479 773 461
|
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}
|
12 19 10 20 14 13 16 18 11 17 15
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
12 14 10 18 13
|
|