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}
|
12 30 24 16 22 50 42 30 43 43 23 29 12 21 12 50 39 37 21 13 36 41 19 23 37
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
15 38 13 43 12 48 49 16 32 17 28 42 33 27 30 19 39 14 45 44 20 26 37 36 11
|
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}
|
65536 8192 8192 2048 2048 256 65536 8192 1024
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
317 647 23 677 17 929 157 937 449 467
|
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 18 16 10 19 14 17 15 11 13 20
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
12 17 16 15 20
|
|