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}
|
19 28 21 49 50 22 26 17 14 43 21 28 26 47 21 28 39 44 18 37 36 46 37 42 35
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
34 41 50 30 14 32 33 46 28 15 16 12 48 36 29 47 45 24 21 13 26 43 27 20 31
|
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}
|
32768 256 16384 1024 65536 65536 32768 512 32768
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
797 509 191 43 719 769 487 769 953 541
|
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}
|
16 14 17 18 19 12 15 20 10 11 13
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
19 15 10 20 13
|
|