DistributionCapabilities Enumeration

Enumerates the capabilities of a probability distribution.

Definition

Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
[FlagsAttribute]
public enum DistributionCapabilities

Members

Mean1 The distribution class supports computing the mean of the distribution.
Variance2 The distribution class supports computing the variance of the distribution.
Skewness4 The distribution class supports computing the skewness of the distribution.
Kurtosis8 The distribution class supports computing the kurtosis of the distribution.
All-1 The distribution class supports all properties and methods of the distribution.
Median16 The distribution class supports computing the median of the distribution.
Pdf4,096 The distribution class supports computing the probability density function of the distribution.
Cdf8,192 The distribution class supports computing the distribution function of the distribution.
InverseCdf16,384 The distribution class supports computing the inverse distribution function of the distribution.

See Also