* Use a new random number generator to generate numExamples
* random gaussians, and add them to the QuantileBin1D
*/
Uniform dataRand = new Uniform(new DRand(7757));
for (int i = 1; i <= numExamples; i++) {
double gauss = dataRand.nextDouble();
qAccum.add(gauss);
dbin.add(gauss);
}
/*