diff options
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 2a41b12a3..45dc162f6 100644 --- a/numpy/fft/pocketfft.py +++ b/numpy/fft/pocketfft.py @@ -163,7 +163,6 @@ def fft(a, n=None, axis=-1, norm=None): in the real part and anti-symmetric in the imaginary part, as described in the `numpy.fft` documentation: - >>> import matplotlib >>> import matplotlib.pyplot as plt >>> t = np.arange(256) >>> sp = np.fft.fft(np.sin(t)) @@ -257,7 +256,6 @@ def ifft(a, n=None, axis=-1, norm=None): Create and plot a band-limited signal with random phases: - >>> import matplotlib >>> import matplotlib.pyplot as plt >>> t = np.arange(400) >>> n = np.zeros((400,), dtype=complex) |