[7f9fb8]: / mne / simulation / __init__.pyi

Download this file

23 lines (22 with data), 478 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
__all__ = [
"SourceSimulator",
"add_chpi",
"add_ecg",
"add_eog",
"add_noise",
"metrics",
"select_source_in_label",
"simulate_evoked",
"simulate_raw",
"simulate_sparse_stc",
"simulate_stc",
]
from . import metrics
from .evoked import add_noise, simulate_evoked
from .raw import add_chpi, add_ecg, add_eog, simulate_raw
from .source import (
SourceSimulator,
select_source_in_label,
simulate_sparse_stc,
simulate_stc,
)