-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
I ran into a small issue when calling tesa_compselect. Apparently, it assumes that the first field of 'EEG.chanlocs' is 'labels', however in my case it is the third. The below change fixes this issue and should be safer:
Change any instance of
e = struct2cell(EEG.chanlocs);
elec = squeeze(e(1,1,:));
to
elec = {EEG.chanlocs.labels}';
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels