diff options
author | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-12-30 18:18:30 -0800 |
---|---|---|
committer | Tyler Reddy <tyler.je.reddy@gmail.com> | 2019-01-02 10:25:32 -0800 |
commit | 49a798c27d08f244207829c57d9621c9514e8c82 (patch) | |
tree | f723e3f62eea76a39f6c86a37a81ba885aebcfd7 /numpy/fft/pocketfft.py | |
parent | a16fc9499eaa7cc9d7532f8a51725c6ed647cd1b (diff) | |
download | numpy-49a798c27d08f244207829c57d9621c9514e8c82.tar.gz |
DOC, TST: remove agg setting from docs
* there is no longer any usage of "agg"
backend switching in our docstrings because
this backend is already activated in
the refguide_check machinery
Diffstat (limited to 'numpy/fft/pocketfft.py')
-rw-r--r-- | numpy/fft/pocketfft.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/fft/pocketfft.py b/numpy/fft/pocketfft.py index 794d13937..2a41b12a3 100644 --- a/numpy/fft/pocketfft.py +++ b/numpy/fft/pocketfft.py @@ -164,7 +164,6 @@ def fft(a, n=None, axis=-1, norm=None): the `numpy.fft` documentation: >>> import matplotlib - >>> matplotlib.use('Agg') >>> import matplotlib.pyplot as plt >>> t = np.arange(256) >>> sp = np.fft.fft(np.sin(t)) @@ -259,7 +258,6 @@ def ifft(a, n=None, axis=-1, norm=None): Create and plot a band-limited signal with random phases: >>> import matplotlib - >>> matplotlib.use('agg') >>> import matplotlib.pyplot as plt >>> t = np.arange(400) >>> n = np.zeros((400,), dtype=complex) |