Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

how to read a bin file in matlab-eeg data file.

Status
Not open for further replies.

veer

Newbie level 4
Joined
Apr 28, 2003
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
42
data bins matlab

hi,

i need to read a bin file in matlab...for which i use fread command..

fread(fid,samples needed,format)..problem is i dont know the format( have tried different combinations..its not working)...how shld i write a code to read..

to be precise its a eeg recorded bin file with 59 channel recording...how to read that into matlab..any codes...

is there any other software like eeglab..

kindly do reply..thanks..
veer.
 

eeg r matlab

i don't know what is the format of eeg file but it is easy to read a binary file with MATLAB.
fid = fopen('*.eeg', 'r');
c = fread(fid, 1)

this instruction read one byte from *.eeg file.
 

read the .bin in matlab

Talk to the instrument manufacturer, and try to get a reference manual that describes the data format.

If no luck, show us a couple frames of the binary data, and tell us what numerical values are in that data. Maybe someone here can help you decode the format.

Maybe talk to this fellow. Sounds like he solved a similar problem:
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top