diff options
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index cce238459..cee7b3a62 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -2593,7 +2593,6 @@ def blackman(M): Examples -------- - >>> import matplotlib >>> import matplotlib.pyplot as plt >>> np.blackman(12) array([-1.38777878e-17, 3.26064346e-02, 1.59903635e-01, # may vary @@ -2810,8 +2809,6 @@ def hanning(M): Plot the window and its frequency response: - >>> import matplotlib - >>> import matplotlib.pyplot >>> import matplotlib.pyplot as plt >>> from numpy.fft import fft, fftshift >>> window = np.hanning(51) @@ -2912,8 +2909,6 @@ def hamming(M): Plot the window and the frequency response: - >>> import matplotlib - >>> import matplotlib.pyplot >>> import matplotlib.pyplot as plt >>> from numpy.fft import fft, fftshift >>> window = np.hamming(51) @@ -3189,7 +3184,6 @@ def kaiser(M, beta): Examples -------- - >>> import matplotlib >>> import matplotlib.pyplot as plt >>> np.kaiser(12, 14) array([7.72686684e-06, 3.46009194e-03, 4.65200189e-02, # may vary @@ -3284,7 +3278,6 @@ def sinc(x): Examples -------- - >>> import matplotlib >>> import matplotlib.pyplot as plt >>> x = np.linspace(-4, 4, 41) >>> np.sinc(x) |