Read DBF

Post Reply
trung05101
Posts: 17
Joined: Tue Feb 21, 2012 9:26 am
Location: viet nam

Read DBF

Post by trung05101 »

Hi all!
I downloaded MatLab code to read BioSemi BDF format data files. But I don't know how to use it. Example I want read channel 1, testdata.bdf.
Thanks.

w.m.vanvliet
Posts: 4
Joined: Tue Mar 13, 2012 2:47 pm
Location: Leuven, Belgium

Post by w.m.vanvliet »

I always use biosig (http://biosig.sourceforge.net)

HDR = sopen('testdata.bdf');
EEG = sread(HDR);
channel1 = EEG(:,1);
sclose(HDR);

trung05101
Posts: 17
Joined: Tue Feb 21, 2012 9:26 am
Location: viet nam

Post by trung05101 »

Thanks.
But I only downloaded ReadBDFChannel.m and ImportBDFHeader.m. I don't have funtion sopen and sread.

w.m.vanvliet
Posts: 4
Joined: Tue Mar 13, 2012 2:47 pm
Location: Leuven, Belgium

Post by w.m.vanvliet »

Is there any particular reason you cannot use biosig?

I never worked with ReadBDFChannel.m, so cannot help you there I'm afraid. Try typing 'help ReadBDFChannel'

Lloyd
Posts: 26
Joined: Fri Mar 26, 2004 7:46 pm
Location: Wilmington, NC, USA
Contact:

MATLAB API

Post by Lloyd »

If you are interested in an open source MATLAB API for ActiveTwo, see this topic viewtopic.php?p=2049#2049. Thanks.

Post Reply