2 summary:: Skewed random number generator.
3 related:: Classes/ExpRand, Classes/IRand, Classes/NRand, Classes/Rand, Classes/TExpRand, Classes/TIRand, Classes/TRand
4 categories:: UGens>Random
8 Generates a single random float value in linear distribution from
9 code::lo:: to code::hi:: , skewed towards
10 code::lo:: if code::minmax:: < 0, otherwise
11 skewed towards code::hi:: .
19 Lower limit of the output range.
22 Upper limit of the output range.
25 The output is skewed towards code::lo:: if code::minmax:: < 0, otherwise skewed towards code::hi::.
32 SynthDef("help-LinRand", { arg out=0, minmax=1;
35 LinRand(200.0, 10000.0, minmax),
36 0, Line.kr(0.2, 0, 0.01, doneAction:2))
45 Synth.new("help-LinRand"); 0.04.wait;
50 //towards lo (doesn't work like that yet)
54 Synth.new("help-LinRand", [\minmax, -1]); 0.04.wait;