Declares common functionality for all random number distributions.
Constructor | Description | ||
Full Usage:
Distribution()
|
![]() ![]() ![]() ![]() Initializes a new instance of the Distribution class, using a StandardGenerator as underlying random number generator. |
||
Full Usage:
Distribution(generator)
Parameters:
Generator
-
A Distribution.Generator object.
|
![]() ![]() ![]() ![]() Initializes a new instance of the Distribution class, using the specified Distribution.Generator as underlying random number generator.
|
Instance member | Description |
Full Usage:
this.CanReset
Returns: bool
|
![]() ![]() ![]() ![]() Gets a value indicating whether the random number distribution can be reset, so that it produces the same random number sequence again.
|
Full Usage:
this.Generator
|
![]() ![]() ![]() ![]() Gets or sets a Distribution.Generator object that can be used as underlying random number generator. |
Full Usage:
this.Maximum
Returns: float
Modifiers: abstract |
![]() ![]() ![]() ![]() Gets the maximum possible value of distributed random numbers.
|
Full Usage:
this.Mean
Returns: float
Modifiers: abstract |
![]() ![]() ![]() ![]() Gets the mean of distributed random numbers.
|
Full Usage:
this.Median
Returns: float
Modifiers: abstract |
![]() ![]() ![]() ![]() Gets the median of distributed random numbers.
|
Full Usage:
this.Minimum
Returns: float
Modifiers: abstract |
![]() ![]() ![]() ![]() Gets the minimum possible value of distributed random numbers.
|
Full Usage:
this.Mode
Returns: float[]
Modifiers: abstract |
![]() ![]() ![]() ![]() Gets the mode of distributed random numbers.
|
Full Usage:
this.NextDouble
Returns: float
A distributed double-precision floating point number.
Modifiers: abstract |
![]() ![]() ![]() ![]() Returns a distributed floating point random number.
|
Full Usage:
this.Reset
Returns: bool
, if the random number distribution was reset; otherwise, .
|
![]() ![]() ![]() ![]() Resets the random number distribution, so that it produces the same random number sequence again.
|
Full Usage:
this.Variance
Returns: float
Modifiers: abstract |
![]() ![]() ![]() ![]() Gets the variance of distributed random numbers.
|
Static member | Description |
|
![]() ![]() ![]() ![]()
|