en ru

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

Verbatim copying and distribution of this entire article are permitted in any medium, provided this notice is preserved.
Send suggestions, questions and bug reports to neurowombatmail@gmail.com
Copyright © 2009, 2010, 2011, 2012 Andrew Timashov