diff options
author | Nathaniel J. Smith <njs@pobox.com> | 2015-05-18 22:00:48 -0700 |
---|---|---|
committer | Nathaniel J. Smith <njs@pobox.com> | 2015-05-18 22:00:48 -0700 |
commit | a79d9d35c1b1582e5e0b8487f5dd414d15944f2c (patch) | |
tree | 98e1c241efc07d173ae340371be1c0414b79e83f /numpy/lib/function_base.py | |
parent | c5cf20ab673c76f4b3ef7f85b4d1fd4149237772 (diff) | |
parent | 7897da783e93c43711cf7d5b555674fefba4d16e (diff) | |
download | numpy-a79d9d35c1b1582e5e0b8487f5dd414d15944f2c.tar.gz |
Merge pull request #5893 from stefanv/hann
DOC: Fix spelling of Von Hann's surname
Diffstat (limited to 'numpy/lib/function_base.py')
-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 04063755c..94d63c027 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -2320,7 +2320,7 @@ def hanning(M): .. math:: w(n) = 0.5 - 0.5cos\\left(\\frac{2\\pi{n}}{M-1}\\right) \\qquad 0 \\leq n \\leq M-1 - The Hanning was named for Julius van Hann, an Austrian meteorologist. + The Hanning was named for Julius von Hann, an Austrian meteorologist. It is also known as the Cosine Bell. Some authors prefer that it be called a Hann window, to help avoid confusion with the very similar Hamming window. |