I was given an EEG data sample (normal vs mild cognitive impaired). I used EEGlab on Octave to load the files. After loading, i find that each one of the samples are measured over different time points.
That is, on doing,
size(eeg.data) returns (19, 11990) for one sample and returns (19,10212) for another sample. SO, the number of channels is the same across the board but the number of time points over which data is gathered is varying.
Is this normal in EEG data. Are'nt all samples supposed to have the same dimensions ? How to go ahead with applying any ML techniques on this data?