[Scipy-svn] r4909 - trunk/scipy/fftpack/tests

scipy-svn at scipy.org scipy-svn at scipy.org
Sun Nov 2 03:53:37 EST 2008


Author: cdavid
Date: 2008-11-02 02:53:30 -0600 (Sun, 02 Nov 2008)
New Revision: 4909

Modified:
   trunk/scipy/fftpack/tests/test_basic.py
Log:
Add a regression test for a bug similar #244, but with fftn instead of fft2.

Modified: trunk/scipy/fftpack/tests/test_basic.py
===================================================================
--- trunk/scipy/fftpack/tests/test_basic.py	2008-11-02 08:53:10 UTC (rev 4908)
+++ trunk/scipy/fftpack/tests/test_basic.py	2008-11-02 08:53:30 UTC (rev 4909)
@@ -360,14 +360,21 @@
             fftn(swapaxes(large_x1,-1,-2)),-1,-2))
 
     def test_shape_axes_argument2(self):
+        # Change shape of the last axis
         x = numpy.random.random((10, 5, 3, 7))
         y = fftn(x, axes=(-1,), shape=(8,))
         assert_array_almost_equal(y, fft(x, axis=-1, n=8))
 
+        # Change shape of an arbitrary axis which is not the last one
         x = numpy.random.random((10, 5, 3, 7))
         y = fftn(x, axes=(-2,), shape=(8,))
         assert_array_almost_equal(y, fft(x, axis=-2, n=8))
 
+        # Change shape of axes: cf #244, where shape and axes were mixed up
+        x = numpy.random.random((4,4,2))
+        y = fftn(x, axes=(-3,-2), shape=(8,8))
+        assert_array_almost_equal(y, numpy.fft.fftn(x, axes=(-3, -2), s=(8, 8)))
+
     def test_shape_argument_more(self):
         # Test that fftn raise a value error exception when s.shape is longer
         # than x.shape




More information about the Scipy-svn mailing list