mne.viz.plot_bridged_electrodes#
- mne.viz.plot_bridged_electrodes(info, bridged_idx, ed_matrix, title=None, topomap_args=None)[source]#
Topoplot electrode distance matrix with bridged electrodes connected.
- Parameters:
- info
mne.Info The
mne.Infoobject with information about the sensors and methods of measurement.- bridged_idx
listoftuple The indices of channels marked as bridged with each bridged pair stored as a tuple. Can be generated via
mne.preprocessing.compute_bridged_electrodes().- ed_matrix
arrayoffloat, shape (n_channels, n_channels) The electrical distance matrix for each pair of EEG electrodes. Can be generated via
mne.preprocessing.compute_bridged_electrodes().- title
str A title to add to the plot.
- topomap_args
dict|None Arguments to pass to
mne.viz.plot_topomap().
- info
- Returns:
- figinstance of
matplotlib.figure.Figure The topoplot figure handle.
- figinstance of