Click or drag to resize

ChiSquare Class

Continuous univariate chi-square distribution. http://en.wikipedia.org/wiki/Chi-square_distribution
Inheritance Hierarchy
SystemObject
  FinMath.Statistics.DistributionsCUDistribution
    FinMath.Statistics.DistributionsGamma
      FinMath.Statistics.DistributionsChiSquare

Namespace:  FinMath.Statistics.Distributions
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
[SerializableAttribute]
public class ChiSquare : Gamma

The ChiSquare type exposes the following members.

Constructors
  NameDescription
Public methodChiSquare(Double)
Initializes a new instance of ChiSquare class.
Public methodChiSquare(RandomGenerator, Double)
Initializes a new instance of ChiSquare class.
Top
Properties
  NameDescription
Public propertyDegreesOfFreedom
Number of degrees of freedom.
Public propertyEntropy
Entropy of the distribution. http://en.wikipedia.org/wiki/Information_entropy
(Inherited from CUDistribution.)
Public propertyKurtosis
Excess Kurtosis of distribution. http://en.wikipedia.org/wiki/Excess_kurtosis
(Inherited from Gamma.)
Public propertyMean
Mean of the distribution. http://en.wikipedia.org/wiki/Expected_value
(Inherited from Gamma.)
Public propertyMedian
Median of distribution. http://en.wikipedia.org/wiki/Median
(Inherited from CUDistribution.)
Public propertyMode
Mode of distribution. http://en.wikipedia.org/wiki/Mode_(statistics)
(Inherited from Gamma.)
Public propertyScale
Scale of the distribution. http://en.wikipedia.org/wiki/Scale_parameter
(Inherited from Gamma.)
Public propertyShape
Shape of the distribution. http://en.wikipedia.org/wiki/Shape_parameter
(Inherited from Gamma.)
Public propertySkewness
Skewness of distribution. http://en.wikipedia.org/wiki/Skewness
(Inherited from Gamma.)
Public propertyStandardDeviation
Standard deviation of the distribution. http://en.wikipedia.org/wiki/Standard_Deviation
(Inherited from Gamma.)
Public propertyVariance
Variance of the distribution. http://en.wikipedia.org/wiki/Variance
(Inherited from Gamma.)
Top
Methods
  NameDescription
Public methodCdf(Double)
Cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Inherited from Gamma.)
Public methodStatic memberCdf(Double, Double)
Static cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInverseCdf(Double)
Inverse cumulative distribution function. Is useful for quantile calculation. Function will return value of random variable such that likelihood for this random variable to occur less than or equal to returned value equal to specified pvalue parameter.
(Inherited from CUDistribution.)
Public methodStatic memberInverseCdf(Double, Double)
Inverse cumulative distribution function. Is useful for quantile calculation. Function will return value of random variable such that likelihood for this random variable to occur less than or equal to returned value equal to specified pvalue parameter.
Public methodPdf(Double)
Probability distribution function. http://en.wikipedia.org/wiki/Probability_density_function
(Inherited from Gamma.)
Public methodStatic memberPdf(Double, Double)
Static probability distribution function. http://en.wikipedia.org/wiki/Probability_density_function
Public methodSample
Generate random variable sample.
(Inherited from Gamma.)
Public methodStatic memberSample(Double)
Static method which generates new sample of Chi-square distribution variate with specified parameters.
Public methodSample(Int32)
Generate series of random variable samples.
(Inherited from CUDistribution.)
Public methodSample(Double)
Fill in array with random variable series.
(Inherited from Gamma.)
Public methodSample(Vector)
Fill in vector with random variable samples series.
(Inherited from CUDistribution.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also