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