How_to_load_edat2_files_in_matlab

The following lines explain how to load the edat2 files created by E-prime2, into Matlab.

% Load the exported edat2 file (later named Tfinal).

[FileName,Raw_Path] = uigetfile('*.*','Select the edat2 file *.txt');

cd(Raw_Path)

T = readtable((FileName),...

'Delimiter','\t','ReadVariableNames',false);

Then you have a table to work with and the variables start from line 2!