Short for Fast Fourier Transform, any of a set of algorithms for quickly computing the Discrete Fourier Transform.
0
votes
0answers
2 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
0answers
6 views
aurioTouch2 FFT visualizer not workin
I'm looking at the Apple aurioTouch example code and the FFT view doesn't seem to work. When I switch to that view, I see a nice spectrum for an instant, and then it rolls up to the top of the ...
1
vote
0answers
47 views
Ploting a spectrogram of a pure sinus with matplotlib
I'm trying to get a spectogram plot of a pure sine function. Together with that i want to show a plot of the fft of that whole signal. I'm expecting the peaks to be on the same frequency since were ...
0
votes
1answer
68 views
Translating from Matlab to C a function
I m translating a funciton from MAtlab to C. I have a problem with just some lines with Fourier Transform. This is the code, the commented lines are in Matlab and is what I need to translate.
Mat ...
0
votes
0answers
18 views
Chromagram library class in Java
i'm writing a music IR software for my university class with java (i know, i know....bad idea!) and i need an easy way to obtain rough notes/chords information over the time. i've been thinking about ...
0
votes
0answers
31 views
how I can calculate median,min magnitude of image in matlab
I have a image and in my homework I must calculate fourier transform of it and recover it by 3 different value
with min of magnitude values
with median of magnitude values with 25%
percentage of ...
0
votes
0answers
16 views
How would you to transform a collection of labeled 3D/XYZ sensor (time-series) data to identify a shape?
Consider this problem:
You have a collection of sensor data that represents the three dimensional location of five fingers scanning a surface. There are three types of objects in this experiment: A ...
1
vote
1answer
26 views
FFT returning conjugate of true answer
I have an odd problem. Following (re: copying) from here, I've been trying to implement the Cooley–Tukey FFT algorithm for arrays with a power-of-2 size, but the answers returned from this ...
1
vote
1answer
41 views
Why is the output different for code ported from MATLAB to Python? [closed]
EDIT: After some more testing and a response form the scipy mailing list, the issue appears to be with fspecial(). To get the same output I need to generate the same kind of kernel in Python as the ...
0
votes
1answer
44 views
How can I get the ratio of two audio signals in the frequencies domain?
I need to compare two audio signals, signal1 and signal2. Signal1 is a white noise. Signal2 is the same signal of signal1, with a particular equalization for cutting or for attenuating some ...
0
votes
0answers
15 views
Is there an existing implementation of the Short-Time Fourier Transformation in PHP?
I've been looking all over for a STFT implementation in PHP, but I can't find it anywhere and I'm not sure I trust myself to create one without making the complexity unnecessarily high.
I'm ...
-3
votes
0answers
39 views
How can I get the ratio of two signals in the frequency domain? [closed]
I used this library to process my data and pass from the time domain to the frequencies domain. Now I need to calculate the ratio of two different signals in the frequencies domain. Can I calculate ...
-1
votes
0answers
24 views
claculate inverse fourier transform of image only with magnitulde in matlab
I know I can calculate fft with fft2 and inverse of it with ifft2 of image in matlab,
but I want first calcuate fft of image and recover ( inverse ) of it only by magnitude of image ( set phase to ...
0
votes
1answer
31 views
fourier transform of image in magnituide not work in matlab
I want to plot magnitude and phase of fourier transform of image in matlab,
by tutorial I read in this link implement line by line but in magnitude only plot a white screen by this codes
...
-1
votes
0answers
19 views
FFT in MATLAB Query [closed]
I have a sine wave of 2000Hz- 30seconds. When I take the fft of this function and plot it, the amplitude of the frequency(2000Hz.Evidently, there should only be one) turns out be around 12k.
But when ...
0
votes
1answer
36 views
Draw Spectrogram STFT in C#, what function can I use?
Assume that I have STFT (short time fourier transform) data, how would these can be displayed on the picture box as spectrogram of frequency vs time, what function in C# can I use ?
0
votes
1answer
28 views
measuring sound intensity after analyzing spectrum?
i am writing a program on smartphone (on Android)
It is about :
Analyzing spectrum of sound by fft algorithms
measuring the intensity of a sound have f = fo (ex. fo = 18khz) from the spectrum which ...
0
votes
0answers
38 views
How to output the numbers in array from Fourier transform to a one single line in Excel file using Python
I want to output the numeric result from image processing to the .xls file in one line exactly in cells horizontally, does anybody can advice what Python module to use and what code to add, please? ...
0
votes
1answer
25 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 ...
1
vote
1answer
35 views
Defining axes in matlab
I'm trying to plot f[t], Fourier series evaluated at 23 for some periodic square-wave with x-axis limits of [0,T] and y-axis limits of [-1 1].
I have a figure 1 which is a plot of ...
1
vote
2answers
26 views
iOS how to pick colors for a hot/cold spectrogram when max magnitude is not known?
I'm looking at the aurio touch sonogram example and see that it displays different FFT frequency bands, depending on their magnitude with color that ranges from blue to purple to red to white. When ...
3
votes
1answer
57 views
Fourier transform / iterative deconvolution fitting in python using numpy/scipy
I would like to fit a fluorescent lifetime curve. These curves are given by the convolution of the instrument response function (IRF, assumed Gaussian) and a (multi) exponential decay:
Where G is ...
0
votes
2answers
30 views
fast fourier transform with complex numbers from a file
My code let a user to introduce an array of numbers that will be transformed with Fourier. But I want to read this array from a file . How can I do this? I just started to learn python ..
import ...
0
votes
1answer
46 views
Convert audio stereo to audio byte
I've trying to do some audio processing, I'm really stuck with a stereo to mono conversion. I looked in internet regarding stereo to mono conversion.
As far I know, I can take the left channel, right ...
-2
votes
0answers
52 views
my FFT results don't make sense in matlab
I have a wavfile that I read and I've calculated the average Level(t) [in the time domain] and now I want to find the Level(f) [in the frequency domain].
[channel,fs] = wavread('C:\Desktop\REC072');
...
0
votes
1answer
70 views
list index out of range in python 2.7
I need to create a program in python using fourier transform. It says: list index out of range,and I don;t understand why. The error is at these lines:
Feven = fft([x[i] for i in xrange(0, n, ...
-2
votes
0answers
77 views
Removing noise from audio using Fourier transform in Matlab [closed]
I'm trying to remove noise from an audio file. This audio file contains speech as well as constant pink noise. I know that I have to use the Fourier transform to convert to the frequency domain then ...
1
vote
0answers
36 views
Frequency array feeds FFT
The final goal I am trying to achieve is the generation of a ten minutes time series: to achieve this I have to perform an FFT operation, and it's the point I have been stumbling upon.
Generally the ...
0
votes
1answer
29 views
iPhone Accelerate Framework FFT to convert a two-dimensional array
I'm working on a project that requires a Fourier transform of a 2D array.
However, I'm far from being an expert with both FFT's or particularly vDSP.
I've seen some examples here, here or here but ...
0
votes
1answer
61 views
'x' and 'y' lengths differ with fft in R
Hi I took the example from: stat.ethz.ch
## Now let's look at some artificial data:
x <- seq(100000)/1000 # pretend we're sampling at 1 kHz
## We'll put in two frequency components, plus a dc ...
0
votes
1answer
63 views
DSP FFT fundamental frequency wav file
I have a FFT algorithm in C# and I generate sine wave in a buffer at a frequency of 440, FS=1600 and Window length of 2048.
Before sending the signal to the FFT, I double the window length and put ...
0
votes
1answer
49 views
+50
How do I extract 'features' from the FFT data
I have an audio visualiser which currently represents 3RGB LEDs through an Arduino. I send a value for each channel of light and this currently works well.
I change the intensity of each channel ...
-2
votes
0answers
22 views
How to calculate frequency or amplitude or any data from audio sample to start and stop audio recorder automatically [closed]
I want to start and stop my audio recorder automatically so I want to get some relevant data from audio sample on which I can start or stop audio recording.
just like talking tom cat app. I am unable ...
1
vote
2answers
77 views
Something wrong with my fft() in python
I have a function I am supposed to plot the amplitude spectrum of between 10MHz and 11.4MHz. This is the function: cos(6.72*(10**7*t) + 3.2*sin(5*(10**5*t))) I know what the plot is supposed to ...
0
votes
1answer
19 views
How do I deal with brightness rescaling after FFT'ing and spatially filtering images?
Louise here. I've recently started experimenting with Fourier transforming images and spatially filtering them. For example, here's one of a fireplace, high-pass filtered to remove everything above ...
1
vote
1answer
31 views
iPhone issue when executing in standalone mode
I googled during a lot of time my problem and I didn't find anything helpful so I hope one of you will be able to help me.
I developed an iPhone application which process FFT on audio input frames ...
1
vote
1answer
78 views
Higher radix (or better) formulation for Stockham FFT
Background
I've implemented this algorithm from Microsoft Research for a radix-2 FFT (Stockham auto sort) using OpenCL.
I use floating point textures (256 cols X N rows) for input and output in the ...
0
votes
1answer
35 views
computing fft of damped waves
I have a time series which is a linear combination of damped waves. The data is real.
Y(t) =SUM_w exp(- gamma t) sin(omega t)
There is no analytic form but this is a closest guess. I want to fourier ...
0
votes
1answer
61 views
Matlab regression with periodic data
I have a vector of periodic values:
How would you suggest to fit this values, so I can predict the values out of the starting range ?
I fFound this interesting example: ...
0
votes
0answers
15 views
Accuracy of Fourier series program
I have a program in Python which calculates the Fourier coefficients of a function with non-uniform point sampling (the function is obtained via edge detection).
My problem is that when I try to ...
0
votes
0answers
127 views
FFT based image registration in python
I found simple code in python for image registration here
in simple case of translation we have:
def translation(im0, im1):
"""Return translation vector to register images."""
shape = ...
0
votes
1answer
56 views
FFT unable to recombine results? [closed]
so basically I have a function that calculates the complex discrete Fourier series of a given vector of size N. (So I have been provided with the vector y and I have to find x)
The code uses ...
0
votes
0answers
53 views
How to prevent Signal drifting when changing frequency
When I recreate a signal it seems to look great. But when I try and increase it's frequency (which is done in a for loop and the variable new_freq=2) it starts to drift.
See Image below (The top ...
0
votes
0answers
29 views
Get a spectrum from text-to-speech output (Using FMOD and MS Speech API)
I would like to combine both text-to-speech and fft to generate a spectrum from a spoken text in c++.
I already know how to get the spectrum of an audio file with FMOD thanks to ...
0
votes
1answer
72 views
fft on samples of an audio file in matlab
I'm trying to extract information from a sound file in order to use it in a video classification algorithm I'm working on.
My problem is that I don't know how to work exactly with audio files in ...
0
votes
0answers
129 views
DFT with EMGU/OpenCV - I'm doing something wrong
I'm trying to run DFT in 4x4 blocks over this image (look closely, it's small) It may be a bit too small to see, but it's a 4x12 pixel image. The first 4x4 square is a checkerboard pattern with each ...
-1
votes
1answer
42 views
computational complexity of convolution
I read that the computational complexity of the general convolution algorithm is O(n^2), while by means of the FFT is O(n log n).
What about convolution in 2-D and 3-D?
Any reference?
1
vote
3answers
74 views
FFT Resolution in constrained environments
So I am sampling data from a sensor at 10 kilo samples per second. I am going to collect 512 samples continuously from this sensor, and then try to do an FFT on it. But here is the problem, I am ...
0
votes
1answer
101 views
How to plot contour of FFT of an image in Matlab
I want to know how to plot the contour of the FFT of an image in Matlab. I have this code but when plotting the contour I get a blue plot. I think I need to specify the range of the frequencies in the ...
0
votes
1answer
29 views
Discrete cosine transform library in Java
Is there a DCT library in Java which computes DCT in logarithmic time? I read that DCT can be computed with FFT algorithms, so there should also be a logarithmic time algorithm for dct.


