Exponential |
The exponential distribution is a continuous probability distribution. It describes the time between events in a Poisson process, i.e. a process in which events occur continuously and independently at a constant average rate λ.
This topic contains the following sections:
Constructor | Description | Performance |
---|---|---|
set rate | Creates new instance of Exponential with user specified parameter λ. |
Method | Description | Performance |
---|---|---|
sample | Generate random variable sample. Fill in array with random variable series in place: Static method which generates new sample of Exponential distribution variate with specified parameters: | |
Probability density function. Static probability density function. | ||
cdf | Cumulative distribution function. Static cumulative distribution function. | |
inverse cdf | Inverse cumulative distribution function. Is useful for quantile calculation. Function will return value of random variable such that likelihood for this random variable to occur less than or equal to returned value equal to specified pvalue parameter. |
Property | Description | Performance |
---|---|---|
rate | Rate of the distribution. | |
mean | Mean of the distribution. | |
median | Median of the distribution. | |
mode | Mode of distribution. | |
kurtosis | Excess Kurtosis of distribution. | |
skewness | Skewness of distribution. | |
entropy | Entropy of distribution. | |
variance | Variance of the distribution. | |
standard deviation | Standard deviation of the distribution. |