mne.concatenate_epochs

mne.concatenate_epochs(epochs_list, add_offset=True)[source]

Concatenate a list of epochs into one epochs object.

Parameters
epochs_listlist

List of Epochs instances to concatenate (in order).

add_offsetbool

If True, a fixed offset is added to the event times from different Epochs sets, such that they are easy to distinguish after the concatenation. If False, the event times are unaltered during the concatenation.

Returns
epochsinstance of Epochs

The result of the concatenation (first Epochs instance passed in).

Notes

New in version 0.9.0.

Examples using mne.concatenate_epochs