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}
|
21 42 25 33 39 50 17 19 15 47 19 23 44 27 36 48 13 39 18 28 27 14 28 48 33
|
{sequence random, rows=25, minimal=10, maximal=50, unique } {$sequence} {/sequence}
|
28 21 49 50 40 31 35 32 24 43 29 22 11 42 13 37 36 23 45 20 12 10 34 47 16
|
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}
|
8192 16384 65536 8192 512 4096 8192 8192 32768
|
{sequence prime, rows=10, randomly, to=1000 } {$sequence} {/sequence}
|
853 947 29 23 41 563 491 373 719 199
|
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 13 20 12 11 17 18 10 16 15 19
|
{mySeq randomize=5} {$sequence} {/mySeq}
|
18 20 14 19 12
|
|