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}
|
27 13 16 38 35 13 16 48 28 11 25 16 46 18 18 15 41 49 25 50 18 32 19 20 41
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
15 27 14 24 38 44 46 18 20 16 33 45 49 10 13 21 35 50 26 32 12 23 48 43 30
|
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}
|
1024 8192 512 16384 32768 512 2048 32768 32768
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
859 463 701 347 743 101 911 587 701 373
|
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}
|
10 11 19 13 15 14 16 18 12 20 17
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
16 10 14 13 18
|
|