djenrandom
djenrandom copied to clipboard
A C program to generate random data using several random models, with parameterized non uniformities and flexible output formats.
Results
1
djenrandom issues
Sort by
recently updated
recently updated
newest added
I think the the following code: ``` double smooth_prob_move_from_center(double t) { double prob_shiftout; prob_shiftout = 0.5L * exp(-0.5L * t *t); return(prob_shiftout); } ``` has a problem. I think that...