BiasCorrectQ.MonthCDF.MonthCDF C# (CSharp) Method

MonthCDF() public method

public MonthCDF ( List points, int month ) : System
points List
month int
return System
        public MonthCDF(List<Point> points, int month)
        {
            var values = GetMonthlyData(points, month);

            List<double> sorted_values;
            List<double> cdf = Utils.ComputeCDF(values, out sorted_values);

            Month = month;
            Probability = cdf;
            Flow = sorted_values;
            LNfit = new LNFit(values);
        }