- MNE-Python version: 0.23.0
- operating system: NAME=“Ubuntu”/VERSION=“20.04.2 LTS (Focal Fossa)”
Hello,
I’m wondering how I can acquire an adjacency matrix of my 185-channel eeg cap to perform a searchlight analysis? I use the following function:
raw = mne.io.read_raw_eeglab('185_channel_data.set')
adj, names = mne.channels.find_ch_adjacency(raw.info, 'eeg')
Could not find a adjacency matrix for the data. Computing adjacency based on Delaunay triangulations.
-- number of adjacent vertices : 185
However, I’m confused about the output of this function: it is a list of 5 arrays, each with 185 elements. I was expecting a matrix with each electrode and its four adjacent electrodes?
Any help would be appreciated,
Tom