We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
mne.find_events
1 parent adcbae3 commit eb80c6dCopy full SHA for eb80c6d
mne/io/edf/edf.py
@@ -2117,8 +2117,11 @@ def read_raw_bdf(
2117
>>> events[:, 2] &= (2**16 - 1) # doctest:+SKIP
2118
2119
The above operation can be carried out directly in :func:`mne.find_events`
2120
- using the ``mask`` and ``mask_type`` parameters (see
2121
- :func:`mne.find_events` for more details).
+ using the ``mask`` parameter as follows:
+
2122
+ >>> events = mne.find_events(..., mask=2**16 - 1) # doctest:+SKIP
2123
2124
+ See :func:`mne.find_events` for more details.
2125
2126
It is also possible to retrieve system codes, but no particular effort has
2127
been made to decode these in MNE. In case it is necessary, for instance to
0 commit comments