summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Fox-Rabinovitz <madphysicist@users.noreply.github.com>2016-07-06 11:51:25 -0400
committerGitHub <noreply@github.com>2016-07-06 11:51:25 -0400
commit0038a258ad8de4d4805bf3a3c75a784f72493433 (patch)
treeb6743843b6b94186bd8c6571f63daace0e31d2fb
parent95e8a642759ccfccf6a37f1b07a2697f5d1bd736 (diff)
downloadnumpy-0038a258ad8de4d4805bf3a3c75a784f72493433.tar.gz
DOC: Misplaced parens in formula
-rw-r--r--numpy/lib/function_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index 3cfaf350b..0952bf696 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -592,7 +592,7 @@ def histogram(a, bins=10, range=None, normed=False, weights=None,
'Doane'
.. math:: n_h = 1 + \log_{2}(n) +
- \log_{2}(1 + \frac{|g_1|}{\sigma_{g_1})}
+ \log_{2}(1 + \frac{|g_1|}{\sigma_{g_1}})
g_1 = mean[(\frac{x - \mu}{\sigma})^3]