Truncated Normal
Creates a truncated normal distribution over the supplied interval. The supplied mean normalMean and variance normalVariance is the mean of the not truncated normal distribution. The supplied mean must be contained within the supplied interval.
Uses the algorithm:
W ~ U(F(a), F(b))
X = F^{-1}(W)
where "a" is the lower limit and b is the upper limit, and F is the normal distribution CDF.
Constructors
Properties
Functions
Gets the parameters of the truncated distribution normal mean = parameter0 normal variance = parameters1 lower limit = parameters2 upper limit = parameters3
Sets the parameters of the truncated distribution normal mean = parameter0 normal variance = parameters1 lower limit = parameters2 upper limit = parameters3
Promises to return a random variable that uses the supplied stream number using the supplied stream provider