Provides generation of t-distributed random numbers.
The implementation of the StudentsTDistribution type bases upon information presented on Wikipedia - Student's t-distribution and Xycoon - Student t Distribution.
Constructor | Description | ||
Full Usage:
StudentsTDistribution()
|
Initializes a new instance of the StudentsTDistribution class, using a StandardGenerator as underlying random number generator. |
||
|
Initializes a new instance of the StudentsTDistribution class, using a StandardGenerator as underlying random number generator.
|
||
Full Usage:
StudentsTDistribution(nu)
Parameters:
float
|
|
||
|
Initializes a new instance of the StudentsTDistribution 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:
float
|
Updates the helper variables that store intermediate results for generation of t-distributed random numbers.
|
Full Usage:
this.IsValidNu
Parameters:
float
-
The value to check.
Returns: bool
if value is greater than 0; otherwise, .
|
|
Full Usage:
this.Maximum
Returns: float
Modifiers: abstract |
Gets the maximum possible value of t-distributed random numbers.
|
Full Usage:
this.Mean
Returns: float
Modifiers: abstract |
Gets the mean value of t-distributed random numbers.
|
Full Usage:
this.Median
Returns: float
Modifiers: abstract |
Gets the median of t-distributed random numbers.
|
Full Usage:
this.Minimum
Returns: float
Modifiers: abstract |
Gets the minimum possible value of t-distributed random numbers.
|
Full Usage:
this.Mode
Returns: float[]
Modifiers: abstract |
Gets the mode of t-distributed random numbers.
|
Full Usage:
this.NextDouble
Returns: float
A t-distributed double-precision floating point number.
Modifiers: abstract |
Returns a t-distributed floating point random number.
|
Full Usage:
this.Nu
|
Gets or sets the parameter nu which is used for generation of t-distributed random numbers. Call StudentsTDistribution.IsValidNu to determine whether a value is valid and therefor assignable. |
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 t-distributed random numbers.
|
Static member | Description |
Full Usage:
StudentsTDistribution.CDF(x, n)
Parameters:
float
n : float
Returns: float
|
|
Full Usage:
StudentsTDistribution.PDF(x, n)
Parameters:
float
n : float
Returns: float
|
|
Full Usage:
StudentsTDistribution.Quantile(alpha, n)
Parameters:
float
n : float
Returns: float
|
|