From dbac1e1de5ce392136d09aa6016e5ac5d348c5ad Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Sun, 23 Jun 2013 12:51:20 +0200 Subject: [PATCH] Categorical: rename inverse CDF function --- src/Numerics/Distributions/Discrete/Categorical.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Numerics/Distributions/Discrete/Categorical.cs b/src/Numerics/Distributions/Discrete/Categorical.cs index c93cfc6c..f27ff56c 100644 --- a/src/Numerics/Distributions/Discrete/Categorical.cs +++ b/src/Numerics/Distributions/Discrete/Categorical.cs @@ -435,7 +435,7 @@ namespace MathNet.Numerics.Distributions /// A real number between 0 and 1. /// An integer between 0 and the size of the categorical (exclusive), /// that corresponds to the inverse CDF for the given probability. - public static int InverseDistributionFunction(double[] normalizedCDF, double probability) + public static int InverseCumulativeDistribution(double[] normalizedCDF, double probability) { if (Control.CheckDistributionParameters) {