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 11 23 35 14 37 43 10 21 50 26 14 41 37 10 13 15 18 31 26 42 27 24 22 17
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
45 26 20 19 15 16 18 10 12 31 30 37 21 35 13 40 50 33 47 41 14 49 23 24 48
|
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 8192 256 512 2048 1024 512 4096 16384
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
953 71 13 331 911 929 317 601 677 967
|
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 10 19 18 14 20 17 13 15 11 16
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
19 16 13 11 14
|
|