Poisson
class Poisson(mean: Double = 1.0, name: String? = null) : Distribution, DiscretePMFInRangeDistributionIfc, LossFunctionDistributionIfc, ThirdOrderLossFunctionIfc, GetRVariableIfc, RVParametersTypeIfc(source)
Represents a Poisson random variable. A Poisson random variable represents the number of occurrences of an event with time or space.
Parameters
mean
the mean rate
name
an optional label/name
Properties
Functions
Link copied to clipboard
G1(x) = Emax(X - x, 0).
Link copied to clipboard
Gets the parameters for the distribution
Sets the parameters for the distribution parameters0 should be the mean rate
Link copied to clipboard
Promises to return a random variable that uses the supplied stream number using the supplied stream provider
Link copied to clipboard
Second-order loss function in the second factorial moment form, as in Zipkin, Foundations of Inventory Management (2000):
Link copied to clipboard
G3(x) = (1/6) * Emax(X - x, 0) * max(X - x - 1, 0) * max(X - x - 2, 0), in the third factorial moment form, matching secondOrderLossFunction.