From: W. Trevor King Date: Mon, 19 Nov 2012 06:43:02 +0000 (-0500) Subject: FFT_tools: add docstring to TestRFFT.test_rfft X-Git-Tag: 0.5~7 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=09af0296387b05f6415dd64e5f5fb00ec9b921af;p=FFT-tools.git FFT_tools: add docstring to TestRFFT.test_rfft --- diff --git a/FFT_tools.py b/FFT_tools.py index abdc75f..9a6041a 100644 --- a/FFT_tools.py +++ b/FFT_tools.py @@ -382,6 +382,7 @@ class TestRFFT (_unittest.TestCase): timeSum, n, freqSum)) def test_rfft(self): + "Test NumPy's builtin :func:`numpy.fft.rfft`" xs = [1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1] self.run_rfft(xs, _numpy.fft.rfft(xs))