diff options
author | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-12-04 12:17:59 -0800 |
---|---|---|
committer | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-12-14 10:14:05 -0800 |
commit | 19784177a61de75927a4934fd4cdd91afbb5b35c (patch) | |
tree | cf9f88bf968e48d0eebd2cd523cefd2bd4c2fd51 /numpy/lib/function_base.py | |
parent | 250861059b106371cb232456eeccd6d9e97d8f00 (diff) | |
download | numpy-19784177a61de75927a4934fd4cdd91afbb5b35c.tar.gz |
MAINT: address several reviewer comments
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 2f73e4828..1ead375de 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -3196,10 +3196,10 @@ def kaiser(M, beta): >>> matplotlib.use('agg') >>> import matplotlib.pyplot as plt >>> np.kaiser(12, 14) - array([7.72686684e-06, 3.46009194e-03, 4.65200189e-02, # may vary - 2.29737120e-01, 5.99885316e-01, 9.45674898e-01, - 9.45674898e-01, 5.99885316e-01, 2.29737120e-01, - 4.65200189e-02, 3.46009194e-03, 7.72686684e-06]) + array([7.72686684e-06, 3.46009194e-03, 4.65200189e-02, # may vary + 2.29737120e-01, 5.99885316e-01, 9.45674898e-01, + 9.45674898e-01, 5.99885316e-01, 2.29737120e-01, + 4.65200189e-02, 3.46009194e-03, 7.72686684e-06]) Plot the window and the frequency response: |