diff options
author | Joseph Fox-Rabinovitz <madphysicist@users.noreply.github.com> | 2016-07-06 11:51:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-06 11:51:25 -0400 |
commit | 0038a258ad8de4d4805bf3a3c75a784f72493433 (patch) | |
tree | b6743843b6b94186bd8c6571f63daace0e31d2fb /numpy/lib | |
parent | 95e8a642759ccfccf6a37f1b07a2697f5d1bd736 (diff) | |
download | numpy-0038a258ad8de4d4805bf3a3c75a784f72493433.tar.gz |
DOC: Misplaced parens in formula
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/function_base.py | 2 |
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] |