Base class for continuous probability distribution functions.
Constructor | Description |
Full Usage:
ContinuousDistribution(generator)
Parameters:
Generator
-
The random number generator used.
|
|
Instance member | Description |
Full Usage:
this.CDF
Parameters:
float
-
Argument.
Returns: float
The probability that the random variable of this probability distribution will be found at a value less than or equal to x.
Modifiers: abstract |
Calculates the cumulative distribution function.
|
Full Usage:
this.PDF
Parameters:
float
-
Argument.
Returns: float
The relative likelihood for the random variable to occur at the point x.
Modifiers: abstract |
Calculates the probability density function.
|
Full Usage:
this.Quantile
Parameters:
float
-
The probability p.
Returns: float
The point x at which the cumulative distribution function ContinuousDistribution.CDF of argument x is equal to p.
Modifiers: abstract |
Calculates the quantile of the distribution function.
|