RandomTools Flavor: choose
describe a flavor which chooses from a collection
Calling Sequence
Parameters
Description
Examples
choose(collection)
collection
-
set, list, Matrix, Vector, Array, or table
The flavor choose selects one of the entries in a non-empty collection with equal probability.
This flavor can be used as an argument to RandomTools[Generate] or as part of a structured flavor.
The flavor choose cannot select an element from a non-array table that has an indexing function.
with⁡RandomTools:
Generate⁡choose⁡a,b,c,d,e,f
e
Generate⁡choose⁡A,B,C,D
C
Generate⁡choose⁡Array⁡10..12,15..17,13..15,i,j,k↦i,j,k
12,16,13
Generate⁡choose⁡table⁡a=b,c=d
b
seq⁡Generate⁡choose⁡1,2|3,4,i=1..10
4,3,4,1,2,2,2,4,4,1
Matrix⁡3,3,Generate⁡choose⁡0,1,makeproc=true
010101100
See Also
Array
flavor[structured]
indexfcn
list
Matrix
RandomTools
RandomTools[Generate]
set
table
Vector
Download Help Document