summaryrefslogtreecommitdiff
path: root/numpy/fft/pocketfft.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/fft/pocketfft.py')
-rw-r--r--numpy/fft/pocketfft.py2
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)