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

Download this file

79 lines (78 with data), 1.8 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
__all__ = [
"DigMontage",
"Layout",
"_EEG_SELECTIONS",
"_SELECTIONS",
"_divide_to_regions",
"combine_channels",
"compute_dev_head_t",
"compute_native_head_t",
"equalize_channels",
"find_ch_adjacency",
"find_layout",
"fix_mag_coil_types",
"generate_2d_layout",
"get_builtin_ch_adjacencies",
"get_builtin_montages",
"make_1020_channel_selections",
"make_dig_montage",
"make_eeg_layout",
"make_grid_layout",
"make_standard_montage",
"read_ch_adjacency",
"read_custom_montage",
"read_dig_captrak",
"read_dig_dat",
"read_dig_egi",
"read_dig_fif",
"read_dig_hpts",
"read_dig_localite",
"read_dig_polhemus_isotrak",
"read_layout",
"read_polhemus_fastscan",
"read_vectorview_selection",
"rename_channels",
"transform_to_head",
"unify_bad_channels",
]
from .channels import (
_EEG_SELECTIONS,
_SELECTIONS,
_divide_to_regions,
combine_channels,
equalize_channels,
find_ch_adjacency,
fix_mag_coil_types,
get_builtin_ch_adjacencies,
make_1020_channel_selections,
read_ch_adjacency,
read_vectorview_selection,
rename_channels,
unify_bad_channels,
)
from .layout import (
Layout,
find_layout,
generate_2d_layout,
make_eeg_layout,
make_grid_layout,
read_layout,
)
from .montage import (
DigMontage,
compute_dev_head_t,
compute_native_head_t,
get_builtin_montages,
make_dig_montage,
make_standard_montage,
read_custom_montage,
read_dig_captrak,
read_dig_dat,
read_dig_egi,
read_dig_fif,
read_dig_hpts,
read_dig_localite,
read_dig_polhemus_isotrak,
read_polhemus_fastscan,
transform_to_head,
)