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}
|
14 36 37 44 34 32 17 24 10 43 39 36 35 23 44 23 35 17 40 25 41 28 23 38 28
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
42 28 41 24 44 18 15 36 10 19 45 14 22 23 25 31 40 43 16 32 12 11 33 34 27
|
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}
|
16384 4096 256 256 32768 8192 512 65536 8192
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
733 103 433 937 347 263 661 701 499 797
|
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}
|
16 10 14 13 11 17 15 19 20 12 18
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
18 17 12 15 16
|
|