Reading Clinical EEG (.ezdata) file IN MATLAB
Mostra commenti meno recenti
how can we read a clinical EEG that is in .ezdata file format in Matlab. Following is the data from one subject and it shows the Ezdata in the name.i have searched alot but i am unable to find any sort of converter for this format.i have also attached the file which i am trying to read in Matlab in compressed folder.how can we read this file in matlab or convert it to some format that is supported by MATLAB.THANKS.The machine used for recording this data is Cadwell Arc Essentia.

5 Commenti
Star Strider
il 13 Set 2019
I cannot find any information online about that file extension. I cannot even find out what software creates them.
See if there are other export options in the software, ideally as MATLAB .mat files, although other formats MATLAB can import are also options.
Hassan Nawazish
il 13 Set 2019
Hassan Nawazish
il 13 Set 2019
deying liu
il 4 Feb 2024
hello,have u solved the problem?I face the same problem
You can export the data in EDF format from Arc viewer as shown in the figure above.
then process the data using the widely known mne library.
Risposte (2)
ezdata appears to be a file created by Cadwell EEG Machines (along with .eas and .ez3). Based on what I see in the attached file, it is in SQLite format 3, which appears to be a database file. If you have access to the Database Toolbox, you can use sqlread to load the data.
zipFile = 'ace8295e-7820-...7-02-18-1.zip';
unzip(zipFile)
% Connect to the database
conn = sqlite('ace8295e-7820-4076-b08b-f533449786d1-2019-02-05-07-02-18-1.ezdata')
% List all database contents
data = sqlfind(conn,'')
It looks like FrameInfo contains the actual data, so load that using sqlread
% Load a table from the database (must know the name)
vals = sqlread(conn,data.Table(1))
% plot first track
plot(vals.Data{1})
This should be enough to get your started.
jan brogger
il 21 Mar 2024
0 voti
I am the author of an FieldTrip/EEGLAB plugin that reads Nicolet EEG files. I now have the same problem of working with Cadwell Arc .ezdata files. I might work on an EEGLAB plugin for Cadwell Arc .ezdata files. I have been able to reproduce @Cris LaPierre parsing of an .ezdata file as a SQLite database. Cris is probably right that the EEG data are in the FrameInfo table.
On a test EEG file which is 1199 seconds long (19 minutes 59 seconds) about 20 channels at 500 Hz, the FrameInfo table contains 1199 rows. Try using this statement.
SELECT COUNT(Data) FROM 'FrameInfo'
returns 1199. This is suspiciously like the number of seconds in the file.
Each line contains 10449 comma-separated values. So the data matrix contains (1199x10449) = 12528351 values.
The expected size of the EEG data matrix for 20 channels at 500 Hz at 1199 seconds is 11 990 000 data points. So it is not far off to think that this is a matrix with a header of 538 351 points, and a data matrix of 11 990 000 data points.
The SyncInfo table contains sync items at about one second distance Try:
SELECT UpdateTimeStamp FROM 'syncrowdata'
Parsing the EEG file is somewhat limited by the fact that the information about the EEG channels, which is likely in the TrackInfo table, is a binary large object (blob). Try:
SELECT * FROM 'TrackInfo'
So the extraction of raw EEG data from Cadwell Arc .ezdata format seems possible, but needs more work.
Please reply to this post if conversion of Cadwell Arc is of interest.
4 Commenti
Aziz
il 26 Giu 2024
Hello Jan.
I am interested in collaborating in ordor to understand the topology of these files. I am also working on converting the ezdata files into readable format like EDF and I had make some progress. Do you want to discuss this in details ? If so, please inform me on how to contact you.
dan
il 2 Feb 2025
Hi Jan/All,
I am also in need of having a too to read EEG info stored as EZDATA files. If anyone has had succes please let me know. I can be reached @dan_boersma@yahoo.com. Thanks!
xinzuo
il 23 Nov 2025
Hi Jan. Any updates on this? I've also hit a wall trying to parse the TrackInfo blob. Happy to collaborate if you're still working on it.
jan brogger
il 26 Nov 2025
I might need to work in it, but haven't made any progress. I have a 42-second "blank" test EEG in text format, EDF format and native format. I checked DLLs loaded during export, and the only one was SQLite.Interop.DLl. The DLL Arc.EEG.DataStructures.dll contains _trackInformationVer0 which might be informative. The DLL Arc. Should we start a GitHub repo?
Categorie
Scopri di più su EEG/MEG/ECoG in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

