mne.channels.get_builtin_montages#
- mne.channels.get_builtin_montages(*, descriptions=False)[source]#
Get a list of all standard montages shipping with MNE-Python.
The names of the montages can be passed to
make_standard_montage()
.- Parameters:
- descriptions
bool
Whether to return not only the montage names, but also their corresponding descriptions. If
True
, a list of tuples is returned, where the first tuple element is the montage name and the second is the montage description. IfFalse
(default), only the names are returned.New in version 1.1.
- descriptions
- Returns:
- montages
list
ofstr
|list
oftuple
If
descriptions=False
, the names of all builtin montages that can be used bymake_standard_montage()
.If
descriptions=True
, a list of tuples(name, description)
.
- montages
Examples using mne.channels.get_builtin_montages
#
Working with sensor locations
Plotting sensor layouts of EEG systems
Plotting sensor layouts of EEG systems