04-13-2016 04:18 PM
Hi All,
How can I extract the frequency from the FFT function in labview? thanks in advance
Regards
Solved! Go to Solution.
04-13-2016 05:56 PM
If you put in a time series (usually by using a Waveform), you get out a frequency series. Do you understand the concept of a Fourier Transform? It involves taking a function of time and creating a function of frequency by doing certain integrals. The FFT is just a "fast" numeric way of approximating this integral. So the inputs will be assumed to be equally-spaced time points, and thus the output will be forced (by definition) to be equally-spaced frequency points.
Bob Schor
04-14-2016 04:23 AM
Hi Bob,
Did you mean that, the df is the key to get the frequency?
04-14-2016 04:30 AM
If you have the f0 and df, you can find your frequency just like you would find the time with a waveform based on t0 and dt. You just need the index of the data point you want to get the frequency of. The desired frequency is then f0+x*df, where x is the index of the data point you are interested in.
04-14-2016 04:46 AM
thank you, It's really helpful. thank you