2 summary:: Sum of uniform distributions.
3 related:: Classes/ExpRand, Classes/IRand, Classes/LinRand, Classes/Rand, Classes/TExpRand, Classes/TIRand, Classes/TRand
4 categories:: UGens>Random
8 Generates a single random float value in a sum of
9 code::n:: uniform distributions from
10 code::lo:: to code::hi:: .
18 Lower limit of the output range.
21 Upper limit of the output range.
27 ## n = 1: || Uniform distribution - same as link::Classes/Rand::.
29 ## n = 2: || Triangular distribution.
31 ## n = 3: || Smooth hump.
36 code::n:: increases, distribution converges
45 SynthDef("help-NRand", { arg out=0, n=0;
48 NRand(1200.0, 4000.0, n),
49 0, Line.kr(0.2, 0, 0.01, doneAction:2))
58 Synth.new("help-NRand", [\n, n]); 0.05.wait;