+ create: (id <Zone>)aZonesetGenerator: (id <SplitRandomGenerator>)splitGeneratorsetVirtualGenerator: (unsigned)vGensetMean: (double)meansetStdDev: (double)sdev Use this create message if the generator to be attached is a Split one and you wish to specify the standard deviation:
+ create: (id <Zone>)aZonesetGenerator: (id <SplitRandomGenerator>)splitGeneratorsetVirtualGenerator: (unsigned)vGensetMean: (double)meansetVariance: (double)variance Use this create message if the generator to be attached is a Split one and you wish to specify the variance:
+ create: (id <Zone>)aZonesetGenerator: (id <SimpleRandomGenerator>)simpleGeneratorsetMean: (double)meansetStdDev: (double)sdev Use this create message if the generator to be attached is a Simple one and you wish to specify the standard deviation:
+ create: (id <Zone>)aZonesetGenerator: (id <SimpleRandomGenerator>)simpleGeneratorsetMean: (double)meansetVariance: (double)variance Use this create message if the generator to be attached is a Simple one and you wish to specify the variance:
Phase: Setting
- setMean: (double)meansetStdDev: (double)sdev The setMean:setStdDev: method sets the mean and the standard deviation of the distribution.
- setMean: (double)meansetVariance: (double)variance The setMean:setVariance: method sets the mean and the variance of the distribution.
Phase: Using
- (double)getSampleWithMean: (double)meanwithStdDev: (double)sdev The getSampleWithMean:withStdDev: method returns a sample value drawn from a distribution with the specified mean and standard deviation.
- (double)getSampleWithMean: (double)meanwithVariance: (double)variance The getSampleWithMean:withVariance: method returns a sample value drawn from a distribution with the specified mean and variance.
- (double)getStdDev The getStdDev method returns the standard deviation of the distribution.
- (double)getVariance The getVariance method returns the variance of the distribution.
- (double)getMean The getMean method returns the mean of the distribution.