fftw Questions

4

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 calcul...
Photoelectrotype asked 8/3, 2013 at 19:5

1

I have an AudioRecord thread that writes to database. Now I want to use some audio data in buffer at some intervals and process it using FFT. I want to send audio buffer to FFT as parameter. When...

2

Solved

My project uses Visual Studio 2012, and I am using the libfftw-3.3.lib as coming from their page. When I build my project in debug, it links and compiles just fine, and I get a working application...
Diorite asked 22/8, 2014 at 14:43

3

For a project I need to be able to generate a spectrogram from a .WAV file. I've read the following should be done: Get N (transform size) samples Apply a window function Do a Fast Fourier Transf...
Cookie asked 22/1, 2014 at 12:35

1

Solved

Ceeloss-MacBook-Pro:desktop ceelos$ gcc -o prog -I/usr/local/include test.c Undefined symbols for architecture x86_64: "_fftw_destroy_plan", referenced from: _main in test-IBqBdS.o "_fftw_execut...
Honan asked 30/11, 2013 at 11:59

1

Solved

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; // as...
Philippic asked 21/2, 2013 at 20:56

2

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 e...
Period asked 13/2, 2013 at 9:43

3

Solved

The FFTW manual says that its fftw_complex type is bit compatible to std::complex<double> class in STL. But that doesn't work for me: #include <complex> #include <fftw3.h> int ma...
Krantz asked 18/11, 2010 at 11:48

2

Solved

as a software engineer I am facing with some difficulties while working on a signal processing problem. I don't have much experience in this area. What I try to do is to sample the environmental s...
Probability asked 19/8, 2012 at 20:11

3

I am trying to use FFTW for image convolution. At first just to test if the system is working properly, I performed the fft, then the inverse fft, and could get the exact same image returned. T...
Bruell asked 25/6, 2012 at 19:21

0

A similar version of this question has been asked before (how to compile fftw3 on iOS) about previous versions of IOS and/or OSX, but I am unable to get fftw3 working on a actual IOS device. (Thoug...
Escuage asked 22/5, 2012 at 2:29

1

Solved

I'm trying to develop a simple C application that can give a value from 0-100 at a certain frequency range at a given timestamp in a WAV-file. Example: I have frequency range of 44.1kHz (typical M...
Ayer asked 16/5, 2012 at 22:15

1

Solved

I am currently writing a genre classification application as my final year project in Computer Engineering. I initially wrote the feature extraction code (implementing FFTW) in C and now I need to ...
Nichrome asked 29/8, 2011 at 19:6

1

I wrote two identical programs in Linux and Windows using the fftw libraries (fftw3.a, fftw3.lib), and compute the duration of the fftwf_execute(m_wfpFFTplan) statement (16-fft). For 10000 runs: ...
Aaberg asked 31/12, 2011 at 8:21

1

Solved

I'm seeking a minimal Java wrapper for a recent version of FFTW. The wrappers listed on the FFTW website are either out of date (jfftw-1.2.zip) or contain too much extra stuff (Shared Scientific To...
Mummer asked 25/4, 2011 at 4:14

2

Nowdays I just want to use FFTW3 on iOS, since I've compiled it successfully into i386 version which is used by the iOS simulator, the rest work is to compile it into armv6(or v7) version and lipo ...
Plumcot asked 21/10, 2011 at 14:10

2

Solved

I wrote a simple test program, where I was doing Complex to Complex FT's and I just generated some data 1..50 and stuck it in for the real and imaginary part for each index of the array. When I do...
Goatherd asked 9/3, 2011 at 21:56

1

Solved

I have a 2D array of data stored in column-major (Fortran-style) format, and I'd like to take the FFT of each row. I would like to avoid transposing the array (it is not square). For example, my ar...
Larder asked 16/5, 2011 at 18:31

1

Solved

In the char I have posted below, I am comparing the results from an IFFT run in FFTW and CUFFT. What are the possible reasons this is coming out different? Is it really THAT much round off error? ...
Underhanded asked 9/3, 2011 at 16:30

2

Using FFTW I have been computing the FFT of normalized .wav file data. I am a bit confused as to how I should normalise the FFT output, however. I have been using the method which seemed obvious to...
Physic asked 31/1, 2011 at 20:51

2

Solved

After doing FFT and IFFT I can hear only noise in my headphones... Here is the code: double* spectrum = new double[n]; fftw_plan plan; plan = fftw_plan_r2r_1d(n, data, spectrum, FFTW_REDFT10,...
Daisey asked 13/12, 2010 at 15:6

2

Solved

I'm trying to do some filtering with FFT. I'm using r2r_1d plan and I have no idea how to do the inverse transform... void PerformFiltering(double* data, int n) { /* FFT */ double* spectrum = ...
Mating asked 12/12, 2010 at 15:2

4

Solved

I'm not a DSP expert, but I understand that there are two ways that I can apply a discrete time-domain filter to a discrete time-domain waveform. The first is to convolve them in the time domain, a...
Interlinear asked 2/10, 2010 at 20:1

1

Solved

I want to make a program that would record audio data using PortAudio (I have this part done) and then display the frequency information of that recorded audio (for now, I'd like to display the ave...
Radman asked 17/6, 2010 at 0:58

3

Let us say that I have a WAV file. In this file, is a series of sine tones at precise 1 second intervals. I want to use the FFTW library to extract these tones in sequence. Is this particularly har...
Partly asked 21/5, 2010 at 11:25

© 2022 - 2024 — McMap. All rights reserved.