FFTW, "The Fastest Fourier Transform in The West", is a C library which implements discrete Fourier Transforms. It is licensed under the GNU GPL.

learn more… | top users | synonyms

0
votes
0answers
19 views

Someone knows how to use fftw3 library?

Hi I have to translate from Matlab to C this lines: filter=fftshift(filter); //filter is a bidimensional array rpad=ifft2(imfft.*filter); I downloaded and Installed on Ubuntu the FFTW3 LIB, but I ...
1
vote
1answer
18 views

Why reducing the window length, causes empty rows in spectrogram?

I'm trying to plot a proper spectrogram for sound data, in Qt. And now i can plot a nice looking spectrogram with a fft window length 1024 and overlapping data length 976. But it is usual to use small ...
0
votes
1answer
13 views

FFTW fftwf_plan_r2r_2d() with FFTW_REDFT01 equivalent

I am trying to port code that uses FFTW to use KissFFT. The code uses fftwf_plan_r2r_2d() with FFTW_REDFT01. What would be the equivalent call in KissFFT? If this call (with FFTW_REDFT01) is ...
0
votes
1answer
63 views

Missing FFTW libraries

I'm trying to compile a code written in fortran90/95 and I'm getting this error: user:~> make ifort -O3 -lmpi -L/opt/local/intel/fftw/lib -I/opt/local/intel/fftw/include - ...
0
votes
0answers
43 views

Fortran FFTW with strides ''Matlab-like''

I am a newbie in fortran, and trying to transform my matlab code efficiently to .f I am using the fftw3 package and need ffts with strides complex to complex. e.g. 2 dimensions out of 3d array should ...
2
votes
1answer
68 views

How can I tell a CPAN installation of PDL to use my FFTW path?

I need to install the Perl PDL library via CPAN as the non-root user. CPAN for non-root works thanks to this SO question: How can I use CPAN as a non-root user? Now, PDL depends on the FFTW library. ...
0
votes
1answer
27 views

CUFFT and FFTW data structures: are cufftComplex and fftwf_complex interchangable?

I have some code that performs forward and inverse FFTs with FFTW. I'm working on porting some pieces of the code to use NVIDIA CUFFT. To verify that my CUFFT-based pieces are working properly, I'd ...
0
votes
0answers
19 views

Error in creating libfftw3f-3.lib

I'm trying to create .lib files from .def files downloaded from FFTW. According to this instruction, I should use lib.exe to create lib files. This screenshot shows how I run the command and what ...
0
votes
0answers
27 views

FFTW: Advanced Real-data DFTs

I am trying to do a real -> complex FFT of reduced rank. I am trying to do p 2D ffts (each m x n) on a 3D structure (m x n x p). I played around with complex -> complex and that makes sense since the ...
3
votes
1answer
91 views

Frequency-split waveforms

I would like to generate waveforms which show the low, mid and high frequencies together: ala traktor for ipad http://www.dawsons.co.uk/blog/wp-content/uploads/2013/02/TRAKTOR_DJ_main-2_L.jpg I have ...
0
votes
1answer
71 views

Access violation while trying to compute FFT (fast Fourier transform) of 2 images

I am trying to take FFT of two raw images. But I am getting unhandled exception (access violation) - I could not figure out why. I am using fftw library. First I am reading two images, then I ...
1
vote
2answers
63 views

inverse fourier transform FFT3W

I am using C++ function to find inverse Fourier transform. int inYSize = 170; int inXSize = 2280; float* outData = new float[inYSize*inXSize]; fftwf_plan mReverse = fftwf_plan_dft_c2r_2d(inYSize, ...
1
vote
1answer
120 views

fftw C++ inverse 2D FFT from magnitude and phase arrays

2D FFT/IFFT implementation with FFTW. Currently I have an image loaded in using SFML and have decomposed it into its magnitude and phase components with fftw_plan_dft_2d. This went okay and I've ...
1
vote
1answer
95 views

usage of complex numbers in c++

I have a problem using fftw (3.3). What I do is to create a plan first: int n = 100; vector<double> f,step; vector<complex<double> > F; fftw_plan p; f.resize(n); F.resize(n); p = ...
-4
votes
1answer
135 views

How can I use FFT in my speech recognition project? [closed]

My graduation project is making an Android mobile phone application, where the user will recite into the phone, and then the speech would be compared to a previously recorded voice, and if it matches, ...
0
votes
0answers
142 views

Compilation error: Undefined symbols for architecture x86_64

I am trying to use a fortran library to perform FFT called "2Decomp&FFT"(http://www.2decomp.org/download.html). This library has a in-built FFT engine and works fine with my code. In order to use ...
0
votes
0answers
117 views

FFTW Build Android

I just follow this sophisticated and nice manual compiling fftw3 in android ndk I succesfully build config.h file but in this next step with Android.mk: IAm stack becouse I try build this and ...
0
votes
0answers
89 views

How to use FFTW and MPI to optimize the FFT program?fortran code

In order to simplify convolution, I need calls twice FFT (+ 1, 1) Serial FFT code has been completed. Now I plan to use FFTW and MPI for optimal design can you help me change it with FORTRAN code? or ...
0
votes
0answers
41 views

sizeof void* is unknown

I am compiling FFTW 3.1.2 on Mac OS X 10.7.3 with Intel's Compiler 13.1 and I get the following error at align.c: ifftw.h(122): warning #147: declaration is incompatible with "void ...
0
votes
1answer
107 views

compiling FFTW3 for multiple threads, linux, gcc

I'm trying to compile FFTW (3.3) on my linux machine using GCC. I was not using multi-threads and everything worked great. Now I want to switch to using OpenMP and multi-threading. So, I recompile ...
23
votes
2answers
807 views

FFTW vs Matlab FFT

I posted this on matlab central but didn't get any responses so I figured I'd repost here. I recently wrote a simple routine in Matlab that uses an FFT in a for-loop; the FFT dominates the ...
0
votes
2answers
47 views

Information contained in FFT bins

I am using the FFTW library for an analysis. Any advice is much appreciated. Let us assume that we have a function f[k] = A_k*sin(kwT) + B_k*cost(kwT) and I want to FFT this with a sampling rate of N ...
0
votes
0answers
57 views

Pre-distributed FFTW-MPI Fourier transform

I have been working on a piece of simulation software which needs to make 1 large multi-dimensioned (forward and backward) Fourier transform and a great many, much smaller 1D (forward and backward) ...
0
votes
0answers
126 views

Executable built with VS2010 is not a valid win32 application; bindump says it's a DLL

I've been making a C++ program involving FFTs, and it worked fine up until I decided to use FFTW. After making the libraries from the .def files and linking them to my project, it builds successfully. ...
0
votes
0answers
39 views

FFTW method fftw_cleanup() causing SIGABRT

Good day , I am running a simulation program implemented in C++ which uses the FFTW libraries. The program was working fine for weeks. I now had to make some changes to a certain class A and now the ...
0
votes
1answer
88 views

C++ FFTW3 linking error [duplicate]

I am getting very strange error whenever I am trying to compile a C++ program with FFTW3 implementation. I am compiling as follows g++ -O3 -lm -lfftw3 myFile.cpp -o myFileFFTW I also included ...
1
vote
1answer
91 views

FFTW3 backward doesn't work for me

first I apologize for my bad english... So here is my problem. I'm testing out the FFTW3 library, with a simple input signal, a continious one. Then I compute the FFT and get the good result : just a ...
0
votes
1answer
198 views

FFTW plan creation using OpenMP

I am trying to perform several FFT's in parallel. I am using FFTW and OpenMP. Each FFT is different, so I'm not relying on FFTW's build-in multithreading (which I know uses OpenMP). int m; // ...
0
votes
0answers
32 views

FFTW overwriting input

I've read two things from the FFTW manual and want to make sure I understand correctly: From here it says: Second, the inverse transform (complex to real) has the side-effect of overwriting its ...
0
votes
0answers
54 views

Compiling fftw on Mac fails

I am compiling FFTW 3.1.2 on Mac OS X 10.7.5 with Intel Composer X 13.0.1 and I get an error. I compiled exactly the same code before with Intel Composer X 13.0.2 on Linux and it went well. But on Mac ...
1
vote
0answers
14 views

Wisdom in FFTW doesn't import/export

I am using FFTW for FFTs, it's all working well but the optimisation takes a long time with the FFTW_PATIENT flag. However, according to the FFTW docs, I can improve on this by reusing wisdom between ...
0
votes
2answers
332 views

How to install the fftw3 package of R in ubuntu 12.04?

I am trying to install the fftw3 package through R console >install.packages("fftw") After this command it is asking to select the cran mirror.I have selected the cran mirror then following ...
0
votes
0answers
162 views

How to multiply 2 fftw_complex arrays

Heading Hi, I'm trying to multiply two arrays of fftw_complex types, how should i do it? Here's the code: fftw_complex *rInF, *gInF, *bInF; fftw_complex *rOutF, *gOutF, *bOutF; for(int ...
1
vote
1answer
59 views

fttw3 create 2D plan partially fails

I have a problem with FastFourier... ( FFTW3 ) data of 100x100 samples > transformed to complex frequency domain using FFTW3 and later on I want to use the backtransform forward plan: fftw_plan ...
0
votes
1answer
155 views

FFTW linking in Visual Studio 2012

I'm using Visual Studio 2012 on a 64-bit operating system. I'm trying to use FFTW in a program, but having problems getting the libraries to link. I downloaded the 64-bit package from the FFTW ...
0
votes
2answers
41 views

Building FFTW with debug symbols - problems on port to 64-bit target

I need to find why fftw is segfaulting, in an application which built OK on 32-bit target with gcc4.0 and now fails on a 64-bit target with gcc4.6. The fftw configure options: --enable-debug ...
0
votes
0answers
52 views

Using memcpy to convert betweencomplex< double>* to fftw_complex* [duplicate]

Possible Duplicate: memcpy(), what should the value of the size parameter be? I want to copy a dynamic array: g = new complex<double> [N*N]; to in of type fftw_complex*: in = ...
2
votes
1answer
257 views

FFTW - computing real 2D FFT, special requirements

I'm using FFTW3 to compute 2D real FFT in c++. I've read the manual but have some questions. From the manual: ...
1
vote
0answers
149 views

Converting from complex<double>* to fftw_complex*

I have an input complex<double>* g (2D-array). In order to fourier transform it I first convert it in=(fftw_complex*)g; Where in is the input for fftw. After performing the fft, the code ...
0
votes
0answers
73 views

Taking the real peart of fftw_complex*

I'm running fftw with VC++ 2010. My program takes the 2D fourier transform of a complex gaussian. The problem is as follows: My input gaussian is of type complex < double>*, I convert it to ...
0
votes
1answer
106 views

SIGSEGV in optimizated ifort

If I compile with -O0 in ifort, the program can run correctly. But as long as I open the optimization option, like -O, -O3, -fast, there will be a SIGSEGV segmentation fault come out. This error ...
0
votes
0answers
76 views

Getting the black and white image of Imginalis from FFTW. Qt C++

Hi I have a problem with FFTW3. I'm trying to get the realis(re) and imaginalis(im) from this code below: void fourier::imaginalisF(QImage* image1) { int W=image1->width(); int ...
0
votes
1answer
112 views

calling fftw in multi thread program

I want to use fftw3 in threads. But the code pasted at http://codepad.org/lIjdGF5z causes "double free or corruption" error. How to call fftw3 routines in threads properly. Thanks! You can compile the ...
2
votes
1answer
167 views

Issue with periodically discrepancies in cufft-fftw complex to real transformations

For my thesis, I have to optimize a special MPI-Navier Stokes-Solver program with CUDA. The original program uses FFTW for solving several PDEs. In detail, several upper triangle matrices are fourier ...
0
votes
0answers
72 views

Importing FFTW source into Eclipse as autotools project

I'm programming in Eclipse (Juno 4.2.1) on Linux (Fedora 17 x64) with CDT (8.1.1). I want to import FFTW (3.3.3) into Eclipse so that it's an autotools project. I have the source and configure ...
0
votes
0answers
114 views

code with FFW3 compiled with ifort 11 randomly halt

I have got a time marching FORTRAN code compiled with ifort 11 on a linux machine (centos 5), which links to FFTW3. The code randomly halts after a few thousand steps. The flags I've used are: -O2 ...
0
votes
1answer
89 views

fftw3 proper using

#include <stdio.h> #include <Windows.h> #include <string.h> #include <stdlib.h> #include "fftw3.h" int main(void) { FILE *fp; int rozmiar_pliku; char standard[5] ...
2
votes
0answers
182 views

2D FFT using 1D FFT with mpi

I'm trying to use a complex matrix with the dimensions (n x n) with the fftw_mpi subroutines (version 3.3.2): A 1D FFT (complex to complex) on all the rows and after a 1D FFT (complex to complex) for ...
0
votes
1answer
49 views

fftw simd-altivec.h cannot compile

I'm using fftw on a Mac using Xcode 4.4. In my project, I added the whole fftw source code into the project and tried to compile it. It cannot compile successfully, because in the simd-altivec.h, it ...
4
votes
3answers
413 views

Efficient 2D FFT of fixed length real input data in C/C++

I'm developing an algorithm that calls several times to a FFT function. I have several time constraints (real-time desired) so I need to minimize the time expended in every FFT call. I'm working with ...

1 2 3 4 5