From 8a461db795ccf4423568bcbb2de597937566add4 Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Tue, 11 Mar 2014 12:02:25 -0700 Subject: [PATCH] Fix equation. Fixes #9513. --- include/boost/random/normal_distribution.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/random/normal_distribution.hpp b/include/boost/random/normal_distribution.hpp index 17a9c2d..0be1298 100644 --- a/include/boost/random/normal_distribution.hpp +++ b/include/boost/random/normal_distribution.hpp @@ -248,7 +248,7 @@ struct unit_normal_distribution * \random_distribution. Such a distribution produces random numbers * @c x distributed with probability density function * \f$\displaystyle p(x) = - * \frac{1}{\sqrt{2\pi\sigma}} e^{-\frac{(x-\mu)^2}{2\sigma^2}} + * \frac{1}{\sqrt{2\pi}\sigma} e^{-\frac{(x-\mu)^2}{2\sigma^2}} * \f$, * where mean and sigma are the parameters of the distribution. */