Chi |
public class ChiSquareDistribution : GammaDistribution
The ChiSquareDistribution type exposes the following members.
Name | Description | |
---|---|---|
ChiSquareDistribution(Double) | Initializes a new instance of the ChiSquareDistribution class | |
ChiSquareDistribution(Double, RandomGenerator) | Initializes a new instance of the ChiSquareDistribution class |
Name | Description | |
---|---|---|
Freedom | ||
Generator | Returns the random generator used by the distribution to generate the random values. (Inherited from ProbabilityDistribution) | |
Location | (Inherited from GammaDistribution) | |
Order | (Inherited from GammaDistribution) |
Name | Description | |
---|---|---|
CDF | (Overrides GammaDistributionCDF(Double)) | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | |
GetHashCode | Serves as the default hash function. (Inherited from Object) | |
GetType | Gets the Type of the current instance. (Inherited from Object) | |
Initialize | (Inherited from GammaDistribution) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
NextDouble | ||
(Overrides GammaDistributionPDF(Double)) | ||
Quantile | (Overrides GammaDistributionQuantile(Double)) | |
ToString | Returns a string that represents the current object. (Inherited from Object) |
Name | Description | |
---|---|---|
_invTheta | (Inherited from GammaDistribution) | |
algorithmGD | (Inherited from GammaDistribution) | |
alpha | (Inherited from GammaDistribution) | |
b | (Inherited from GammaDistribution) | |
c | (Inherited from GammaDistribution) | |
d | (Inherited from GammaDistribution) | |
exponentialDistribution | (Inherited from GammaDistribution) | |
F | ||
generator | Pointer to generator. (Inherited from ProbabilityDistribution) | |
normalDistribution | (Inherited from GammaDistribution) | |
q0 | (Inherited from GammaDistribution) | |
r | (Inherited from GammaDistribution) | |
s | (Inherited from GammaDistribution) | |
s2 | (Inherited from GammaDistribution) | |
scale | (Inherited from GammaDistribution) | |
si | (Inherited from GammaDistribution) |
Generates random deviates from a central chi-square distribution with f degrees of freedom. f must be positive. The density of this distribution is: -f/2 f/2-1 -x/2 2 x e p (x) dx = --------------------- dx for x > 0 f Gamma(f/2) = 0 otherwise The calculation uses the relation between chi-square and gamma distribution: ChiSquare(f) = GammaDistribution(f/2,1/2) References: K. Behnen, G. Neuhaus, "Grundkurs Stochastik", Teubner Studienbuecher Mathematik, Teubner Verlag, Stuttgart, 1984.