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}
|
31 19 25 16 41 46 22 49 48 43 44 20 42 13 42 26 42 25 48 40 37 25 12 17 17
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
12 16 31 21 46 41 24 45 33 17 23 29 39 43 19 18 30 37 38 47 13 28 36 35 44
|
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}
|
512 32768 512 65536 512 1024 16384 512 1024
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
757 593 619 2 317 181 673 557 569 7
|
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 16 20 14 11 10 19 15 12 17 18
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
17 13 15 12 16
|
|