MATLAB: How to use FFT in matlab using imported data in time domain excel file

fft

i have some polymers characterized by transmission terahertz time domain spectroscopy (THz-TDS).

Best Answer

Import the data into MATLAB using xlsread()
Your data will be a Nx2 matrix in MATLAB with the first column the time data and the second column the data you want to Fourier transform.
So for example:
[X,TXT,RAW] = xlsread('yourfile.xls');
xdft = fft(X(:,2));
Related Question