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