The beginning of the range of the distribution.
The end of the range of the distribution.
The size of the array.
double low = -100.0; double high = 100.0; ulong size = 20; auto array = randomArray(low, high, size); assert(array.length == size); foreach(double e; array) { assert(low <= e && e < high); }
Returns random numbers from [low, high). The random numbers are uniformly distributed.