Tagged Questions

2
votes
2answers
50 views

Which time-frequency coefficients does the Wavelet transform compute?

The Fast Fourier Transform takes O(N log N) operations, while the Fast Wavelet Transform takes O(N). But what, specifically, does the FWT compute? Although they are often compare …
0
votes
4answers
72 views

When calculating the fast fourier tranform..?

If we get the sound from microphone with two channels, to calculate the frequency spectrum we: calculate the fast fourier transform of all the data input? calculate the fast four …
0
votes
1answer
85 views

C# library to do fft and ifft?

Hello, is there a free c# library to do the fast fourier transform and its inverse?
0
votes
1answer
71 views

How to convert from Inverse Fast Fourier Transform to .wav?

Hello, I used made a fft to make a band pass filter. After that I made the ifft to inverse it and pass it to time domain. My ifft has the same length of the fft. The ifft must b …
0
votes
2answers
108 views

How to compute ifft from fft?

Hello, I've done a fft to get fundamental frequency in real time and to implement high and low pass filters. Now I want to be able to record to a .wav file after I apply a filter …
1
vote
1answer
216 views

What is the logic behind Fourier division algorithm?

from Wikipedia: fourier division. Here is a screenshot of the same: (view in full-resolution) What is the logic behind this algorithm? I know it can be used to divide very lar …
3
votes
3answers
354 views

Explain the FFT to me

I want to take audio PCM data and find peaks in it. Specifically, I want to return the frequency and time at which a peak occurs. My understanding of this is that I have to take …
1
vote
3answers
239 views

On python module benchmarking for FFT

Taking speed as an issue it may be better to choose another language, but, what is your library/module/implementation of choice for doing 1D FFT in python?
2
votes
1answer
257 views

Reverse Spectrogram A La Aphex Twin in MATLAB

Hello. I'm trying to convert an image into an audio signal in MATLAB by treating it as a spectrogram as in Aphex Twin's song on Windowlicker. Unfortunately, I'm having trouble ge …
1
vote
1answer
348 views

Processing Audio Data using Fourier Transforms in Java

Hi, I'm trying to process audio data. I'm working with Java. I've extracted the audio data to an array. Now I should pass N data samples to a function that calculates the Discrete …
1
vote
2answers
269 views

Fast Fourier Transform using a Vandermonde Matrix - Evaluation of Co-efficients?

Say i'm trying to evaluate the Polynomial: x^2 + 1 Using the Fast Fourier transform method for evaluating co-efficients. Now i can change this into matrix/vector form using the …
2
votes
3answers
248 views

Understanding Discrete Fourier Tranform

Hello, I have a small query regarding the discrete Fourier transforms. If I understand correctly, then what we do is convert a polynomial to its point value representation, with n …
1
vote
2answers
419 views

Is there a way to reduce scipy/numpy precision to reduce memory consumption ?

On my 64-bit Debian/Lenny system (4GByte RAM + 4GByte swap partition) I can successfully do: v=array(10000*random([512,512,512]),dtype=np.int16) f=fftn(v) but with f being a np. …
2
votes
1answer
323 views

Approximating a shape boundary using Fourier descriptors

I am trying to approximate shape boundaries by using Fourier descriptors. I know this can be done because I've learned about it in class and read about it in several sources. To o …