Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
51 views

Time Domain / Spectrum / DSP

I perform an iFFT on a complex-valued spectrum and change the corresponding time domain-signal by lets say nulling the first sample. Finally I transform it back to frequency domain via FFT. I wonder ...
2
votes
1answer
191 views

How to perform FFT2D (Fast Fourier Transform 2D) R, G, B color component

I am new in fast fourier transform (FFT) and does not have much idea, how it calculate in programming language such as C++. Here is method of FFT2D void FFT2D(Complex<double> *f, ...
2
votes
2answers
183 views

simultaneous inverse fast fourier transform of two real functions

I'm trying to calculate the inverse Fourier Transform of two real functions with a single IFFT. The best and most straightforward explanation I've found so far is here, where it says: Use the fact ...
1
vote
1answer
41 views

iFFT of symmetric spectrum

I perform the iFFT on a symmetric spectrum (using Python). Why is the result not an real-valued signal but contains complex values? # My symmetric spectrum spectrum = numpy.array( ...
1
vote
0answers
231 views

FFTW: Trouble with real to complex and complex to real 2D tranfsorms

As the title states I'm using FFTW (version 3.2.2) with Fortran 90/95 to perform a 2D FFT of real data (actually a field of random numbers). I think the forward step is working (at least I am getting ...
0
votes
2answers
74 views

Fundamental Frequency by Cepstral Method

I'm trying to find frequencies by the Cepstral method. For my tests I got the following file http://www.mediacollege.com/audio/tone/files/440Hz_44100Hz_16bit_05sec.wav, an audio signal with a ...
0
votes
2answers
77 views

ifft in matlab and numpy give different results

I have another question. Quite similar to the other that i already asked (and got great help - thanks again). Unfortunately the solution from the other thread does not work here: ...
0
votes
3answers
122 views

How to control the length and sampling time of the output of ifft in MATLAB?

I have data in frequency domain that looks like this: This means I have a vector Y that contains the amplitude for the frequency points in the vector x. For example f = [0 1 2 3 4 5 6 7 8 9 10] Y ...
0
votes
0answers
125 views

Normalize 2D output in FFTW and c2r

I have built a spectrum in the frequency domain and want to use the library FFTW and the c2r function for inverse FFT. My dimensions are N x N and my complex array is of size N x (N/2 + 1). I didn't ...