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}
|
48 43 49 27 14 37 12 22 42 26 30 11 35 37 16 20 14 34 15 46 16 47 49 26 21
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
32 49 37 43 47 26 29 20 48 23 42 50 15 46 34 44 39 31 10 27 13 18 14 35 25
|
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}
|
16384 256 512 8192 32768 512 8192 2048 32768
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
311 113 641 151 967 409 137 991 457 857
|
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 16 13 17 15 12 19 10 14 20 18
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
19 15 16 14 20
|
|