This function is essentially the same as the rnd() function
double ran( int nSeed = 0 )
A uniformly random number between 0. and 1.
EX1
// The example displays 10 random numbers between 0. and 1. void ran_ex1() { for (int ii = 0; ii < 10; ii++) { double rr = ran(); out_double("value = ", rr); } }
rnd
origin.h