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}
|
11 26 34 15 28 27 18 28 34 28 37 28 23 24 19 39 18 33 39 24 18 34 12 24 10
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
23 17 31 39 30 32 21 41 18 26 24 43 10 16 46 49 15 19 42 33 38 13 20 44 36
|
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}
|
2048 1024 4096 1024 8192 32768 1024 65536 256
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
251 463 191 383 947 103 601 257 953 337
|
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 12 15 14 18 16 17 19 11 20 10
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
15 17 10 20 16
|
|