Core and Session#
Dataset containers, validation, and the shared session that the GUI and eegprep-console both use.
|
EEGLAB-like GUI state without module globals. |
dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2). |
|
|
Wrapper class for EEG datasets stored as dictionaries. |
|
Wrap eeg_checkset. |
|
Wrap eeg_compare. |
|
Validate and set up EEG dataset structure. |
|
Context manager to control strict mode for eeg_checkset. |
|
Compare two EEG-like structures (or arrays) and return a difference summary. |
Return an empty EEG dictionary with EEGLAB core fields. |
|
|
Return dataset(s) from |
|
Store EEG in |
|
Display or update EEGLAB-style command history. |
|
Start the EEGPrep EEGLAB-style main window. |
|
Wrap EEG_OPTIONS. |