I am analyzing ECG data using MATLAB. The data is made up of two columns, one the time in milliseconds and the other contains the volts (mV) and is imported into MATLAB from a CSV file.
I use the built-in fft
function in MATLAB (i.e fft(mV)
). Now that I have the transformed data, I don't know how to plot it.
I know that I need the frequency data but I'm having trouble understanding where that comes from and what the other axis even is.