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...
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...
Flimsy asked 28/8, 2014 at 11:54
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...
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...
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
2
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...
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...
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?
...
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
2
Solved
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...
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.