2 summary:: embed values randomly chosen from a list
3 related:: Classes/Prand, Classes/Pxrand
4 categories:: Streams-Patterns-Events>Patterns>List
7 Returns one item from the list at random for each repeat, the probability for each item is determined by a list of weights which should sum to 1.0.
14 a = Pwrand.new([1, 2, 3], [1, 3, 5].normalizeSum, 6); // return 6 items
16 7.do({ b.next.postln; });
19 //Prand used as a sequence of pitches:
22 SynthDef(\help_sinegrain,
23 { arg out=0, freq=440, sustain=0.05;
25 env = EnvGen.kr(Env.perc(0.01, sustain, 0.2), doneAction:2);
26 Out.ar(out, SinOsc.ar(freq, 0, env))
32 a = Pwrand([60, 61, 63, 65, 72], [10, 2, 3, 1, 3].normalizeSum, inf).asStream;
35 Synth(\help_sinegrain, [\freq, a.next.midicps]);