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}
|
34 41 42 22 28 38 30 19 27 48 24 20 14 30 21 48 18 39 50 20 38 50 10 26 10
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
41 23 38 25 10 39 30 13 33 19 16 14 12 21 44 47 49 18 11 46 24 48 22 37 32
|
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 256 65536 2048 32768 1024 65536 2048 16384
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
757 227 31 67 547 331 109 607 71 257
|
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 20 12 11 15 14 17 10 19 16 18
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
18 11 12 15 19
|
|