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}
|
30 36 32 29 13 49 15 22 35 16 15 38 41 49 20 35 32 45 38 47 12 44 45 20 36
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
19 40 31 34 10 24 45 25 26 33 23 22 39 14 11 46 29 15 35 50 37 44 21 27 49
|
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 32768 256 65536 8192 512 32768 16384 16384
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
67 619 619 827 241 521 139 239 137 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}
|
11 17 20 18 12 14 10 19 13 15 16
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
12 15 18 16 19
|
|