
RANDOM INT / RANDOM FLOAT
-------------------------

Everytime the Trigger pin in set, a random number is sent from the Output pin, whose range (inclusive) can be specified by the Min, Max pins.

If No Repeat is set to TRUE (Int version only), no identical consecutive numbers will be generated.



NOTE: if the specified range Max is smaller than range Min, their values will be swapped

NOTE: by specifying Min = Max, a same number (Min = Max) will be output of course (no matter No Repeat is set or not)

NOTE: by setting an integer range whose absolute difference is one (eg [3,4] or [-6,-5]) and setting No Repeat, Min and Max will be generated in sequence: this is perfectly normal.

NOTE: the No Repeat option is available in the Int version only (the algorithm used cannot generate two identical FLOAT numbers, which would be almost impossible anyway)

NOTE: (float version) you are advised not to quantize the output. By doing so, you may still get consecutive identical values even if the No Repeat option is set and for obvious reasons: suppose 0.5 and 0.52 are output consecutively but both values end up in the same quantization range, in this case you will get two consecutively identical values. Please rather use the Random Int and convert the result to float and scale suitably.

NOTE: (float version) if the output must be connected directly to a Volts pin, please rather use the ED Random Volts module (SE may "smooth"/"slew" the conversion leading to unintended results)
