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 (22 lines) | stat: -rw-r--r-- 478 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
__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,
)