aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/FFT
diff options
context:
space:
mode:
authorGravatar Thomas Capricelli <orzel@freehackers.org>2010-01-04 23:25:00 +0100
committerGravatar Thomas Capricelli <orzel@freehackers.org>2010-01-04 23:25:00 +0100
commitfd19e0a9ea5794b85488e4fe19d51435e6029457 (patch)
treea853148abb9bb34b76eea619ceefd7a412d87fcd /unsupported/Eigen/FFT
parent57275b2b8ccc5ce7be32f23517490f2d953db1a4 (diff)
unimportant small fix
Diffstat (limited to 'unsupported/Eigen/FFT')
-rw-r--r--unsupported/Eigen/FFT2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/Eigen/FFT b/unsupported/Eigen/FFT
index a43cd8d97..8702120de 100644
--- a/unsupported/Eigen/FFT
+++ b/unsupported/Eigen/FFT
@@ -213,7 +213,7 @@ class FFT
int nfft = src.size();
int nout = HasFlag(HalfSpectrum) ? ((nfft>>1)+1) : nfft;
dst.derived().resize( nout );
- inv( &dst[0],&src[0],src.size() );
+ inv( &dst[0],&src[0], nfft);
}
template <typename _Output>