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}
|
47 28 18 10 23 11 28 13 36 43 36 46 18 22 41 12 33 33 37 19 13 29 50 41 39
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
36 33 16 39 24 23 35 43 10 31 34 40 22 15 45 14 46 26 44 32 29 18 11 12 49
|
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}
|
8192 1024 65536 512 256 8192 32768 256 32768
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
379 673 61 797 79 523 461 23 449 349
|
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}
|
17 10 12 13 15 16 18 14 20 19 11
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
20 13 17 16 14
|
|