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}
|
46 28 50 36 29 18 39 22 24 14 12 38 39 20 29 46 35 23 12 31 42 27 27 19 39
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
40 27 21 26 45 32 13 35 14 17 30 41 15 39 43 11 44 12 42 50 18 47 31 29 25
|
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 256 256 4096 2048 512 256 16384 8192
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
863 827 673 571 457 967 137 5 863 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}
|
13 10 12 18 17 11 14 19 20 15 16
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
13 12 18 17 10
|
|