Returns the next pseudo-random Gaussian double value using the specified random number object.
Syntax
nextGaussian( random )
random.nextGaussian( )
Parameters
random
|
the random object to use.
|
Returns
double
|
the next pseudo-random Gaussian double value.
|
Example
rnd = Random( )
gdValue = rnd.nextGaussian( )
|