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}
|
24 43 36 34 12 50 24 27 27 11 26 22 13 46 45 13 29 48 32 15 47 34 29 11 46
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
40 17 22 28 13 48 34 43 44 27 29 36 41 14 39 31 35 18 11 15 38 49 32 12 30
|
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}
|
4096 65536 8192 256 16384 16384 4096 65536 4096
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
971 541 13 293 83 313 137 443 773 661
|
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}
|
14 15 18 10 13 11 17 12 20 16 19
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
20 19 11 18 10
|
|