MATLAB: How to plot microvolts values in matlab

plot eeg fft microvolts

Hi. I have eeg data that are in microvolts from emotiv.Fs=128 aquisition time=1min. When i plot the signal with the time vector t=0:1/Fs:60 i can see it.But when i do fft and plot it with the frequency vector freq=(1:length(signal))*fs/length(signal) the plot is so small i have to zoom in to see it.How can i set the axis to microvolts to prevent this?

Best Answer

You may have a significant d-c offset. Subtract the mean of the signal from the signal before you do the fft. This will have no effect on the frequency content of your signal.