pquochuy / xsleepnet

47 stars 8 forks source link

Regarding scaling raw data #4

Open andyjung12 opened 1 year ago

andyjung12 commented 1 year ago

For this preprocessing code :

% ensure the signal is calibrated to microvolts if(max(chan_data_eeg) <= 10) disp('Signal calibrated!'); chan_data_eeg = chan_data_eeg * 1000; end

It says that the signal is calibrated to microvolts, but the signals are multiplied by 1000. Shouldn't the signals be multiplied by 1,000,000, since the signals are in volt scale?