Provides generation of rayleigh distributed random numbers.
The implementation of the RayleighDistribution type bases upon information presented on Wikipedia - Rayleigh Distribution.
Constructor | Description | ||
Full Usage:
RayleighDistribution()
|
Initializes a new instance of the RayleighDistribution class, using a StandardGenerator as underlying random number generator. |
||
|
Initializes a new instance of the RayleighDistribution class, using the specified Generator as underlying random number generator.
|
||
Full Usage:
RayleighDistribution(sigma)
Parameters:
float
|
|
||
|
|
Instance member | Description |
Full Usage:
this.CDF
Parameters:
float
Returns: float
Modifiers: abstract |
|
Full Usage:
this.Initialize
Parameters:
float
|
Updates the helper variables that store intermediate results for generation of rayleigh distributed random numbers.
|
Full Usage:
this.IsValidSigma
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 rayleigh distributed random numbers.
|
Full Usage:
this.Mean
Returns: float
Modifiers: abstract |
Gets the mean value of rayleigh distributed random numbers.
|
Full Usage:
this.Median
Returns: float
Modifiers: abstract |
Gets the median of rayleigh distributed random numbers.
|
Full Usage:
this.Minimum
Returns: float
Modifiers: abstract |
Gets the minimum possible value of rayleigh distributed random numbers.
|
Full Usage:
this.Mode
Returns: float[]
Modifiers: abstract |
Gets the mode of rayleigh distributed random numbers.
|
Full Usage:
this.NextDouble
Returns: float
A rayleigh distributed double-precision floating point number.
Modifiers: abstract |
Returns a rayleigh 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.Sigma
|
Gets or sets the parameter sigma which is used for generation of rayleigh distributed random numbers. Call RayleighDistribution.IsValidSigma to determine whether a value is valid and therefor assignable. |
Full Usage:
this.Variance
Returns: float
Modifiers: abstract |
Gets the variance of rayleigh distributed random numbers.
|
Static member | Description |
Full Usage:
RayleighDistribution.CDF(x, sigma)
Parameters:
float
sigma : float
Returns: float
|
|
Full Usage:
RayleighDistribution.PDF(x, sigma)
Parameters:
float
sigma : float
Returns: float
|
|
Full Usage:
RayleighDistribution.Quantile(p, sigma)
Parameters:
float
sigma : float
Returns: float
|
|