Distribution Capabilities Enumeration
Enumerates the capabilities of a probability distribution.
Definition
Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
[FlagsAttribute]
public enum DistributionCapabilitiesMembers
| Mean | 1 | The distribution class supports computing the mean of the distribution. |
| Variance | 2 | The distribution class supports computing the variance of the distribution. |
| Skewness | 4 | The distribution class supports computing the skewness of the distribution. |
| Kurtosis | 8 | The distribution class supports computing the kurtosis of the distribution. |
| All | -1 | The distribution class supports all properties and methods of the distribution. |
| Median | 16 | The distribution class supports computing the median of the distribution. |
| 4,096 | The distribution class supports computing the probability density function of the distribution. | |
| Cdf | 8,192 | The distribution class supports computing the distribution function of the distribution. |
| InverseCdf | 16,384 | The distribution class supports computing the inverse distribution function of the distribution. |