forked from mne-tools/mne-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplot_30_reading_fnirs_data.py
More file actions
38 lines (26 loc) · 992 Bytes
/
Copy pathplot_30_reading_fnirs_data.py
File metadata and controls
38 lines (26 loc) · 992 Bytes
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
# -*- coding: utf-8 -*-
r"""
.. _tut-importing-fnirs-data:
=================================
Importing data from fNIRS devices
=================================
MNE includes various functions and utilities for reading NIRS
data and optode locations.
.. contents:: Page contents
:local:
:depth: 2
.. _import-nirx:
NIRx (directory)
================================
NIRx recordings can be read in using :func:`mne.io.read_raw_nirx`.
The NIRx device stores data directly to a directory with multiple file types,
MNE extracts the appropriate information from each file.
.. warning:: Information about device light wavelength is stored in
channel names. Manual modification of channel names is not
recommended.
Storing of optode locations
===========================
NIRs devices consist of light sources and light detectors.
A channel is formed by source-detector pairs.
MNE stores the location of the channels, sources, and detectors.
""" # noqa:E501