2 summary:: Demand rate random sequence generator
3 categories:: UGens>Demand, UGens>Random
8 array of values or other ugens
12 structurally related: link::Classes/Pshuf::
19 a = Dseq([Dshuf([1, 3, 2, 7, 8.5], 3)], inf);
20 trig = Impulse.kr(MouseX.kr(1, 40, 1));
21 freq = Demand.kr(trig, 0, a) * 30 + 340;
31 a = Dseq([Dshuf({ 10.rand } ! 81, 5)], inf).poll;
32 trig = Impulse.ar(MouseX.kr(1, 10000, 1));
33 freq = Demand.ar(trig, 0, a) * 30 + 340;
39 // embedded structures
43 a = Dseq([Dshuf([Drand([1, 2, 3], 1), 3, Drand([20, 23, 56], 1), 7, 8.5], 8)], inf);
44 trig = Impulse.kr(MouseX.kr(1, 40, 1));
45 freq = Demand.kr(trig, 0, a) * 30 + 340;