Base class for all distributions.
Constructor | Description |
Full Usage:
ProbabilityDistribution()
|
Empty constructor. Use this only in inheritance hierarchies. |
Full Usage:
ProbabilityDistribution(ran)
Parameters:
RandomGenerator
-
The random generator used to produce the random values.
|
Initialize the distribution by providing the random generator used to produce the random values.
|
Instance member | Description |
Full Usage:
this.CDF
Parameters:
float
-
Location.
Returns: float
Cumulative probability at x.
Modifiers: abstract |
Gives the cumulative probability at x.
|
|
Returns the random generator used by the distribution to generate the random values.
|
Full Usage:
this.NextDouble
Returns: float
Modifiers: abstract |
Generates a random value distributed according to the distribution.
|
Full Usage:
this.PDF
Parameters:
float
-
Location.
Returns: float
Probability density at x.
Modifiers: abstract |
Gives the probability density at x.
|
Full Usage:
this.Quantile
Parameters:
float
-
The probability.
Returns: float
The pth quantile, that is the value x for with holds: p==CDF(x)
Modifiers: abstract |
Gives the pth quantile of the distribution.
|
Static member | Description |
|
|