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 11 22 19 19 12 11 10 39 32 18 37 13 46 23 47 15 46 10 19 44 19 48 27 45
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
48 20 12 39 22 49 32 25 24 42 18 10 15 44 19 21 16 34 30 38 13 14 45 41 33
|
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 65536 512 256 32768 1024 8192 16384 8192
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
521 71 797 631 661 229 383 19 743 683
|
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}
|
20 17 14 11 16 19 13 10 15 12 18
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
12 14 10 20 16
|
|