2 summary:: Single random number generator.
3 related:: Classes/ExpRand, Classes/IRand, Classes/LinRand, Classes/NRand, Classes/TExpRand, Classes/TIRand, Classes/TRand
4 categories:: UGens>Random
8 Generates a single random float value in uniform distribution from
9 code::lo:: to code::hi:: . It generates
10 this when the SynthDef first starts playing, and remains fixed for
11 the duration of the synth's existence.
19 Lower limit of the output range.
22 Upper limit of the output range.
29 SynthDef("help-Rand", { arg out=0;
33 0, Line.kr(0.2, 0, 1, doneAction:2))
41 Synth.new("help-Rand"); 1.0.wait;