From 08b9820f8cc0f817e42304a7fa4ed8de44d5a297 Mon Sep 17 00:00:00 2001 From: Jurgen Van Gael Date: Fri, 12 Mar 2010 00:20:28 +0800 Subject: [PATCH] Fixed small inconsistency in the Normal API naming scheme. Signed-off-by: Jurgen Van Gael --- src/Numerics/Distributions/Continuous/Normal.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Numerics/Distributions/Continuous/Normal.cs b/src/Numerics/Distributions/Continuous/Normal.cs index 1d2f15d6..d5363f6e 100644 --- a/src/Numerics/Distributions/Continuous/Normal.cs +++ b/src/Numerics/Distributions/Continuous/Normal.cs @@ -110,7 +110,7 @@ namespace MathNet.Numerics.Distributions /// The mean of the normal distribution. /// The precision of the normal distribution. /// a normal distribution. - public static Normal WithMeanAndPrecision(double mean, double prec) + public static Normal WithMeanPrecision(double mean, double prec) { return new Normal(mean, 1.0 / Math.Sqrt(prec)); }