I am analyzing accelerometer data through FFT as it was suggested that I get information on frequency from the output of FFT. How is the output of FFT correlated with frequency information.
The FFT function is passed an array of values (all real numbers). The FFT function gives back 2 arrays of the same size - for the real and complex part.
I read up some of the previous posts and still confused as to how you can extract the frequency information from the output array of FFT. 1. Is the output array an array of frequencies? Is the array ordered? 1. What does each index of the output array mean? It was suggested that you can compute the magnitude of each index - sort (real[i]* real[i] + img[i] * img[i]) 2. Is the magnitude at each index somehow related to the index in the input array - or is this a frequency? 3. How do I find the dominant frequency?