Namespaces

Types

Type GammaDistribution

Namespace MathNet.Numerics.Distributions

Parent ContinuousDistribution

Methods

Properties

Public instance methods

double CumulativeDistribution(double x)

Continuous cumulative distribution function (cdf) of this probability distribution.
Parameters
return double
double x

bool Equals(object obj)

Parameters
return bool
object obj

int GetHashCode()

Parameters
return int

Type GetType()

Parameters
return Type

double NextDouble()

Returns a gamma distributed floating point random number.
Parameters
return double

double ProbabilityDensity(double x)

Continuous probability density function (pdf) of this probability distribution.
Parameters
return double
double x

void Reset()

void SetDistributionParameters(double alpha, double theta)

Configure all distribution parameters.
Parameters
double alpha
double theta

string ToString()

Parameters
return string

Public static methods

bool IsValidParameterSet(double alpha, double theta)

Determines whether the specified parameters is valid.
Parameters
return bool
double alpha
double theta

Public properties

double Alpha get; set;

Gets or sets the number of summed exponentially distributed random variables.
return double

bool CanReset get;

return bool

double Maximum get;

Gets the maximum possible value of generated random numbers.
return double

double Mean get;

Gets the mean value of generated random numbers.
return double

double Median get;

Gets the median of generated random numbers.
return double

double Minimum get;

Gets the minimum possible value of generated random numbers.
return double

RandomSource RandomSource get; set;

return RandomSource

double Skewness get;

Gets the skewness of distributed random numbers.
return double

double Theta get; set;

Gets or sets the mean of the summed exponentially distributed random variables.
return double

double Variance get;

Gets the variance of distributed random numbers.
return double