[GRASS-SVN] r34390 - grass/branches/develbranch_6/lib/gmath
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Nov 19 06:41:15 EST 2008
Author: hamish
Date: 2008-11-19 06:41:15 -0500 (Wed, 19 Nov 2008)
New Revision: 34390
Modified:
grass/branches/develbranch_6/lib/gmath/fft.c
Log:
bugfix: Correct order of rows, cols arguments to fftw_plan_dft_2d (Glynn; merge from trunk)
Modified: grass/branches/develbranch_6/lib/gmath/fft.c
===================================================================
--- grass/branches/develbranch_6/lib/gmath/fft.c 2008-11-19 11:38:17 UTC (rev 34389)
+++ grass/branches/develbranch_6/lib/gmath/fft.c 2008-11-19 11:41:15 UTC (rev 34390)
@@ -80,7 +80,7 @@
norm = 1.0 / sqrt(NN);
#ifdef HAVE_FFTW3_H
- plan = fftw_plan_dft_2d(dimc, dimr, data, data,
+ plan = fftw_plan_dft_2d(dimr, dimc, data, data,
(i_sign < 0) ? FFTW_FORWARD : FFTW_BACKWARD,
FFTW_ESTIMATE);
More information about the grass-commit
mailing list