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}
|
26 26 38 43 17 29 24 37 40 24 44 12 11 44 10 31 20 31 25 41 29 46 28 48 15
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
46 37 50 13 18 15 22 44 10 23 32 26 14 28 20 39 48 17 25 21 29 43 38 33 34
|
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 16384 512 16384 65536 65536 2048 256 8192
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
821 101 37 313 761 557 541 677 953 223
|
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}
|
19 14 20 11 17 10 13 18 15 12 16
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
15 17 19 18 12
|
|