* @param sd a double standard deviation
* @return a double sample
*/
public static double rNorm(double mean, double sd) {
GaussianGenerator dist = new GaussianGenerator(mean, sd, random);
return dist.nextValue();
}
/**
* Return the normal density function value for the sample x
*