2 summary:: embed values randomly chosen from a list
3 related:: Classes/Prand, Classes/Pwrand
4 categories:: Streams-Patterns-Events>Patterns>List
7 Like link::Classes/Prand::, returns one item from the list at random for each repeat, but Pxrand never repeats the same element twice in a row.
14 a = Pxrand.new(#[1, 2, 3], 10); // return 10 items
16 11.do({ b.next.postln; });
19 //Pxrand 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 = Pxrand(#[60, 61, 63, 65, 72], inf).asStream;
35 Synth(\help_sinegrain, [\freq, a.next.midicps]);