Provides generation of pareto distributed random numbers.
The implementation of the ParetoDistribution type bases upon information presented on Wikipedia - Pareto distribution and Xycoon - Pareto Distribution.
Constructor | Description | ||
Full Usage:
ParetoDistribution()
|
Initializes a new instance of the ParetoDistribution class, using a StandardGenerator as underlying random number generator. |
||
|
Initializes a new instance of the ParetoDistribution class, using the specified Generator as underlying random number generator.
|
||
Full Usage:
ParetoDistribution(alpha, beta)
Parameters:
float
beta : float
|
|
||
Full Usage:
ParetoDistribution(alpha, beta, generator)
Parameters:
float
beta : float
generator : Generator
|
|
Instance member | Description |
Full Usage:
this.Alpha
|
Gets or sets the parameter alpha which is used for generation of pareto distributed random numbers. Call ParetoDistribution.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 pareto distributed random numbers. Call ParetoDistribution.IsValidBeta to determine whether a value is valid and therefor assignable. |
Full Usage:
this.CDF
Parameters:
float
Returns: float
Modifiers: abstract |
|
Full Usage:
this.Initialize
Parameters:
float
beta : float
|
|
Full Usage:
this.IsValidAlpha
Parameters:
float
-
The value to check.
Returns: bool
if value is greater than 0.0; otherwise, .
|
|
Full Usage:
this.IsValidBeta
Parameters:
float
-
The value to check.
Returns: bool
if value is greater than 0.0; otherwise, .
|
|
Full Usage:
this.Maximum
Returns: float
Modifiers: abstract |
Gets the maximum possible value of pareto distributed random numbers.
|
Full Usage:
this.Mean
Returns: float
Modifiers: abstract |
Gets the mean value of pareto distributed random numbers.
|
Full Usage:
this.Median
Returns: float
Modifiers: abstract |
Gets the median of pareto distributed random numbers.
|
Full Usage:
this.Minimum
Returns: float
Modifiers: abstract |
Gets the minimum possible value of pareto distributed random numbers.
|
Full Usage:
this.Mode
Returns: float[]
Modifiers: abstract |
Gets the mode of pareto distributed random numbers.
|
Full Usage:
this.NextDouble
Returns: float
A pareto distributed double-precision floating point number.
Modifiers: abstract |
Returns a pareto distributed floating point random number.
|
Full Usage:
this.PDF
Parameters:
float
Returns: float
Modifiers: abstract |
|
Full Usage:
this.Quantile
Parameters:
float
Returns: float
Modifiers: abstract |
|
Full Usage:
this.Variance
Returns: float
Modifiers: abstract |
Gets the variance of pareto distributed random numbers.
|
Static member | Description |
Full Usage:
ParetoDistribution.CDF(x, alpha, beta)
Parameters:
float
alpha : float
beta : float
Returns: float
|
|
Full Usage:
ParetoDistribution.PDF(x, alpha, beta)
Parameters:
float
alpha : float
beta : float
Returns: float
|
|
Full Usage:
ParetoDistribution.Quantile(p, alpha, beta)
Parameters:
float
alpha : float
beta : float
Returns: float
|
|