25 void computeUniformRealDistribution(
double lowerBound,
double upperBound)
27 double uniformRealDistributionNext()
29 void computeNormalDistribution(
double mean,
double stdev)
31 double normalDistributionNext()
RealType uniformRealDistributionNext()
Obtain the next value in the computed uniform real distribution.
Definition: RandomnessGenerator.h:394
void computeUniformRealDistribution(RealType lowerBound, RealType upperBound)
Compute a uniform real distribution using the specified real data type.
Definition: RandomnessGenerator.h:354
RealType normalDistributionNext()
Obtain the next value in the computed normal distribution.
Definition: RandomnessGenerator.h:432
void computeNormalDistribution(RealType mean, RealType stdev)
Compute a normal distribution using the specified real data type.
Definition: RandomnessGenerator.h:400
Wrapper for RandomnessGenerator class.
Definition: PyRandomnessGeneratorWrapper.h:12