Accord.Statistics.Distributions.Multivariate.HiddenMarkovDistribution.DistributionFunction C# (CSharp) Method

DistributionFunction() public method

Gets the cumulative distribution function (cdf) for this distribution evaluated at point x.
The Cumulative Distribution Function (CDF) describes the cumulative probability that a given value or any value smaller than it will occur.
public DistributionFunction ( int x ) : double
x int A single point in the distribution range.
return double
        public override double DistributionFunction(int[] x)
        {
            throw new NotSupportedException();
        }