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