Namespaces

Types

Type IDistribution

Namespace MathNet.Numerics.Distributions

The interface for univariate distributions.

Methods

Properties

Public instance methods

double CumulativeDistribution(double x)

Computes the cumulative distribution function (cdf) for this probability distribution.
Parameters
return double the cumulative distribution at location x.
double x The location at which to compute the cumulative distribution function.

Public properties

double Entropy get;

Gets the entropy of the distribution.
return double

double Mean get;

Gets the mean of the distribution.
return double

Random RandomSource get; set;

Gets or sets the random number generator which is used to generate random samples from the distribution.
return Random

double Skewness get;

Gets the skewness of the distribution.
return double

double StdDev get;

Gets the standard deviation of the distribution.
return double

double Variance get;

Gets the variance of the distribution.
return double