Using the FFT Algorithm(s) in Matlab

        If you use Matlab to get the FFT you could use an m-file like the one below.

Data=dlmread('SensorSignal1.txt','\t');
Time = Data(:,1);
VData = Data(:,2);
plot(Time,VData)
pause
SigFFT = fft(VData);
plot(abs(SigFFT))

        This m-file does the following:


Precautions:
Points to note: