Provides generation of beta-prime distributed random numbers. This distribution is alsow known as inverted beta distribution.
The implementation of the BetaPrimeDistribution type bases upon information presented on Xycoon - Inverted Beta Distribution.
Constructor | Description | ||
Full Usage:
BetaPrimeDistribution()
|
Initializes a new instance of the BetaPrimeDistribution class, using a StandardGenerator as underlying random number generator. |
||
|
Initializes a new instance of the BetaPrimeDistribution class, using the specified Generator as underlying random number generator.
|
||
Full Usage:
BetaPrimeDistribution(alpha, beta)
Parameters:
float
beta : float
|
|
||
|
Initializes a new instance of the BetaPrimeDistribution class, using the specified Generator as underlying random number generator.
|
Instance member | Description |
Full Usage:
this.Alpha
|
Gets or sets the parameter alpha which is used for generation of beta-prime distributed random numbers. Call BetaPrimeDistribution.IsValidAlpha to determine whether a value is valid and therefor assignable. |
Full Usage:
this.Beta
|
Gets or sets the parameter beta which is used for generation of beta-prime distributed random numbers. Call BetaPrimeDistribution.IsValidBeta to determine whether a value is valid and therefor assignable. |
Full Usage:
this.Initialize
Parameters:
float
beta : float
|
Updates the helper variables that store intermediate results for generation of beta-prime distributed random numbers.
|
Full Usage:
this.IsValidAlpha
Parameters:
float
-
The value to check.
Returns: bool
if value is greater than 1.0; otherwise, .
|
|
Full Usage:
this.IsValidBeta
Parameters:
float
-
The value to check.
Returns: bool
if value is greater than 1.0; otherwise, .
|
|
Full Usage:
this.Maximum
Returns: float
Modifiers: abstract |
Gets the maximum possible value of beta-prime distributed random numbers.
|
Full Usage:
this.Mean
Returns: float
Modifiers: abstract |
Gets the mean value of beta-prime distributed random numbers.
|
Full Usage:
this.Median
Returns: float
Modifiers: abstract |
Gets the median of beta-prime distributed random numbers.
|
Full Usage:
this.Minimum
Returns: float
Modifiers: abstract |
Gets the minimum possible value of beta-prime distributed random numbers.
|
Full Usage:
this.Mode
Returns: float[]
Modifiers: abstract |
Gets the mode of beta-prime distributed random numbers.
|
Full Usage:
this.NextDouble
Returns: float
A beta-prime distributed double-precision floating point number.
Modifiers: abstract |
Returns a beta-prime distributed floating point random number.
|
Full Usage:
this.Variance
Returns: float
Modifiers: abstract |
Gets the variance of beta-prime distributed random numbers.
|