Skip to content

ERPLAB Studio Panels: EEG Utilities

stevenjluck edited this page Jun 7, 2024 · 6 revisions

This panel allows you to access miscellaneous functions that are occasionally useful.

Convert to Continuous EEG

This function will convert an epoched EEGset into a continuous EEGset, with boundary events at the breaks between epochs. This is occasionally useful for applying operations that work only with continuous EEGsets. Click here for more information.

When you perform the conversion, you will see an option for restoring event codes (see screenshot below). This ensures that the event codes in EEG.event are converted from bin numbers back to the original event codes (e.g., from “B2(121)” to “121”).

Convert Epoched to Continuous

Erase Undesired Event Codes

This function is used to erase specific event codes from the data. For example, imagine that occasional event codes of 1001 were occasionally inserted into the data because of a hardware error. You could deleted these by specifying that you would like to delete any event codes that are equally to 10001 (specified, using Matlab syntax, as '==1001') as shown in the screenshot below.

Erase Undesired

Erasing specific event codes can also sometimes make it easier to write simpler bin descriptor files for assigning events to bins with BINLISTER.

You can also delete all event codes less than a specific value by using the < symbol (e.g., '< 100' to delete all event codes less than 100), all event codes greater than a specific value by using the > symbol (e.g., '> 255' to delete all event codes greater than 255), and all event codes that do not equal a specific value by using the = symbol (e.g., '= 200' to delete all event codes that are not equal to 200).

Clone this wiki locally