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}
|
37 28 38 48 44 24 26 17 50 37 17 12 31 35 15 39 20 32 24 26 15 38 24 41 10
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
48 42 40 45 22 25 28 46 43 37 35 30 24 33 27 44 36 12 47 18 26 17 16 21 32
|
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 32768 65536 16384 2048 16384 512 16384 256
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
751 953 431 997 607 31 97 631 449 79
|
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}
|
12 18 13 17 11 10 20 15 16 19 14
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
11 14 18 16 13
|
|