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 34 42 41 36 26 49 26 12 15 26 39 13 15 36 32 22 44 20 14 40 26 19 42 15
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
26 46 18 15 17 28 45 33 21 11 22 16 12 47 32 30 36 24 43 41 31 13 25 48 10
|
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 2048 8192 32768 16384 8192 512 4096
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
479 59 2 827 919 67 523 191 103 11
|
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 10 15 20 18 16 19 12 14 13 17
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
13 15 10 14 11
|
|