Docs
NAME
DISTR - probability distribution enumeration
SYNOPSIS
DISTR = setmetatable({}, { __index = { CUSTOM = 0, -- Custom distribution; EXP = 1, -- Exponential distribution; WEIBULL = 2 -- Weibull distribution; }; __newindex = function() print( "Error!!!" ); end; });
DESCRIPTION
The object provides a set of read-only numeric fields, each of which corresponds to a particular probability distribution.
SEE ALSO
createDistribution, Probability distributions