23 void computeUniformRealDistribution(
double lowerBound,
double upperBound)
25 double uniformRealDistributionNext()
27 void computeNormalDistribution(
double mean,
double stdev)
29 double normalDistributionNext()
Wrapper for RandomnessGenerator class.
Definition: PyRandomnessGeneratorWrapper.h:10
RealType uniformRealDistributionNext()
Obtain the next value in the computed uniform real distribution.
Definition: RandomnessGenerator.h:374
RealType normalDistributionNext()
Obtain the next value in the computed normal distribution.
Definition: RandomnessGenerator.h:412
void computeNormalDistribution(RealType mean, RealType stdev)
Compute a normal distribution using the specified real data type.
Definition: RandomnessGenerator.h:380
void computeUniformRealDistribution(RealType lowerBound, RealType upperBound)
Compute a uniform real distribution using the specified real data type.
Definition: RandomnessGenerator.h:343