mne.
concatenate_raws
(raws, preload=None, events_list=None)[source]¶Concatenate raw instances as if they were continuous.
Note
raws[0]
is modified in-place to achieve the concatenation.
Boundaries of the raw files are annotated bad. If you wish to use
the data as continuous recording, you can remove the boundary
annotations after concatenation (see
mne.Annotations.delete()
).
Parameters: | raws : list
preload : bool, or None
events_list : None | list
|
---|---|
Returns: | raw : instance of Raw
events : ndarray of int, shape (n events, 3)
|