MATLAB: How to convert time domain data to frequency domain by using FFT.

fft

Hello all,
I am having the turbine shaft data in time domain.(Time And velocity in Amplitude)
i have plotted the values and got the waveform for the same data and it is matching with the analyzer data. Next is to do the FFT of it.will anyone help me to formulate this to fft.
figure,plot(time,Velocity)
figure,plot (abs(fft(velocity)))
——–so what should i do next———– i am not getting fft of it

Best Answer

fft(amplitude) already gives you the frequency domain information.
Related Question