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}
|
45 21 21 16 29 11 25 38 12 29 45 13 42 45 14 46 40 33 34 32 48 25 22 26 44
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
34 36 21 43 32 40 48 14 41 29 30 35 46 15 17 37 18 33 23 44 26 49 25 11 16
|
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}
|
256 4096 4096 65536 32768 512 4096 32768 32768
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
929 769 593 293 367 383 167 269 593 131
|
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 19 11 10 20 18 14 17 16 15 12
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
14 12 11 15 17
|
|