File: __init__.pyi

package info (click to toggle)
python-mne 1.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 131,492 kB
  • sloc: python: 213,302; javascript: 12,910; sh: 447; makefile: 144
file content (91 lines) | stat: -rw-r--r-- 2,468 bytes parent folder | download
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
79
80
81
82
83
84
85
86
87
88
89
90
91
__all__ = [
    "BaseRaw",
    "Raw",
    "RawArray",
    "anonymize_info",
    "concatenate_raws",
    "constants",
    "get_channel_type_constants",
    "match_channel_orders",
    "pick",
    "read_epochs_eeglab",
    "read_epochs_fieldtrip",
    "read_epochs_kit",
    "read_evoked_besa",
    "read_evoked_fieldtrip",
    "read_evokeds_mff",
    "read_fiducials",
    "read_info",
    "read_raw",
    "read_raw_ant",
    "read_raw_artemis123",
    "read_raw_bdf",
    "read_raw_boxy",
    "read_raw_brainvision",
    "read_raw_bti",
    "read_raw_cnt",
    "read_raw_ctf",
    "read_raw_curry",
    "read_raw_edf",
    "read_raw_eeglab",
    "read_raw_egi",
    "read_raw_eximia",
    "read_raw_eyelink",
    "read_raw_fieldtrip",
    "read_raw_fif",
    "read_raw_fil",
    "read_raw_gdf",
    "read_raw_hitachi",
    "read_raw_kit",
    "read_raw_nedf",
    "read_raw_neuralynx",
    "read_raw_nicolet",
    "read_raw_nihon",
    "read_raw_nirx",
    "read_raw_nsx",
    "read_raw_persyst",
    "read_raw_snirf",
    "show_fiff",
    "write_fiducials",
    "write_info",
]
from . import constants, pick
from ._fiff_wrap import (
    anonymize_info,
    get_channel_type_constants,
    read_fiducials,
    read_info,
    show_fiff,
    write_fiducials,
    write_info,
)
from ._read_raw import read_raw
from .ant import read_raw_ant
from .array import RawArray
from .artemis123 import read_raw_artemis123
from .base import BaseRaw, concatenate_raws, match_channel_orders
from .besa import read_evoked_besa
from .boxy import read_raw_boxy
from .brainvision import read_raw_brainvision
from .bti import read_raw_bti
from .cnt import read_raw_cnt
from .ctf import read_raw_ctf
from .curry import read_raw_curry
from .edf import read_raw_bdf, read_raw_edf, read_raw_gdf
from .eeglab import read_epochs_eeglab, read_raw_eeglab
from .egi import read_evokeds_mff, read_raw_egi
from .eximia import read_raw_eximia
from .eyelink import read_raw_eyelink
from .fieldtrip import read_epochs_fieldtrip, read_evoked_fieldtrip, read_raw_fieldtrip
from .fiff import Raw, read_raw_fif
from .fil import read_raw_fil
from .hitachi import read_raw_hitachi
from .kit import read_epochs_kit, read_raw_kit
from .nedf import read_raw_nedf
from .neuralynx import read_raw_neuralynx
from .nicolet import read_raw_nicolet
from .nihon import read_raw_nihon
from .nirx import read_raw_nirx
from .nsx import read_raw_nsx
from .persyst import read_raw_persyst
from .snirf import read_raw_snirf