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}
|
34 10 29 42 29 44 30 31 36 50 38 32 15 30 36 41 46 45 11 49 42 11 39 12 15
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
47 45 33 25 13 30 26 40 16 48 31 43 11 22 21 15 23 44 46 14 10 34 41 19 29
|
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 2048 8192 32768 4096 512 1024 65536
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
673 239 197 859 719 89 257 67 431 103
|
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}
|
15 19 10 20 18 16 12 14 13 11 17
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
15 20 14 12 17
|
|