Namespaces

Types

Type Beta

Namespace MathNet.Numerics.Distributions

Interfaces IContinuousDistribution

Implements the Beta distribution. For details about this distribution, see.

The distribution will use the Random by default. Users can get/set the random number generator by using the RandomSource property.

The statistics classes will check all the incoming parameters whether they are in the allowed range. This might involve heavy computation. Optionally, by setting Control.CheckDistributionParameters to false, all parameter checks can be turned off.

Properties

Public properties

double A get; set;

Gets or sets the A shape parameter of the Beta distribution.
return double

double B get; set;

Gets or sets the B shape parameter of the Beta distribution.
return double

double Entropy get;

Gets the entropy of the Beta distribution.
return double

double Maximum get;

Gets the maximum of the Beta distribution.
return double

double Mean get;

Gets the mean of the Beta distribution.
return double

double Median get;

Gets the median of the Beta distribution.
return double

double Minimum get;

Gets the minimum of the Beta distribution.
return double

double Mode get;

Gets the mode of the Beta distribution; when there are multiple answers, this routine will return 0.5.
return double

Random RandomSource get; set;

Gets or sets the random number generator which is used to draw random samples.
return Random

double Skewness get;

Gets the skewness of the Beta distribution.
return double

double StdDev get;

Gets the standard deviation of the Beta distribution.
return double

double Variance get;

Gets the variance of the Beta distribution.
return double