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}
|
38 35 28 43 26 31 49 20 32 11 49 25 50 13 35 29 17 20 13 19 43 20 10 41 12
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
41 44 37 14 28 30 11 24 33 21 35 13 36 12 18 19 47 29 32 27 15 49 39 26 42
|
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 65536 16384 256 512 2048 8192 8192 4096
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
389 227 809 17 239 269 29 659 439 113
|
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}
|
11 16 17 19 13 10 12 15 14 20 18
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
17 13 16 11 18
|
|