Events.mat file

The events.mat file

The events.mat file contains the information necessary for umIT to process event-triggered data. The events.mat file was created primarily to store TTL (transistor-transistor logic) events, as this is a ubiquitous way of communication between equipment in neuroscience labs. In brief, it contains a list of timestamps with the associated event identifier (TTL channel index) and its state (HIGH or LOW). Given its simple organization, it can be used beyond the scope of TTL events detection to store any type of data format, as long as the aforementioned basic information is included.

How it is organized


The events.mat file contains the following variables:

Variable Description
timestamps A vector of timestamps (in seconds) from the beginning of the recording. Data type: single.
state A vector with the state of each event (1 for HIGH and 0 for LOW). Data type: uint8.
eventID A vector of unique identifiers for each event. This represents the index of an event. Data type: uint16.
eventNameList A cell array of names for each eventID. The index in the eventID variable corresponds to the position of the name in the array. Data type: cell.

To create your own function


Since there is not a single way to set up an experiment, it is difficult to have a single function that is applicable to every situation. Thus, one can create their own function (click here for details) to detect events and save them to an events.mat file. Here is a list of functions that can be used to help you creating a function to process events:

Function Folder Description
saveEventsFile ../IOIAnalysis Saves the event information to an events.mat file. It validates the inputs to ensure that the file is properly set.
getEventsFromTTL ../subFunc Detects the events from a TTL signal.
getEventsFromCSV ../Analysis/DataImport Reads events information stored in a .CSV file and saves it to an events.mat file.

Back to top

Copyright © LabeoTech 2024. This work is licensed under the GNU General Public License, Version 3.0.