필터 지우기
필터 지우기

How can I read .edf.event file since I have corresponded .edf file in MATLAB?

조회 수: 16 (최근 30일)
ibrahim guler
ibrahim guler 2018년 1월 3일
댓글: Fernando.Xicot 2020년 12월 9일
In order to read the .edf files, I need a function to do that which available in MATHWORKS (edfread(path)). But I across with a new type of file named as a .edf.event file which gives information about the corresponded .edf file. But the problem is how can I read it?

답변 (1개)

ehsan rastgar
ehsan rastgar 2018년 9월 16일
Hi dear ibrahim guler I had this problem and wrote my own code and use edfread I upload my code here and Hope to help you # how use it % example :
[filename,pathname] = uigetfile({'*.*';'*.edf'},'Pick edf File');
[hdr, record] = edfread([pathname,filename]);
[Task_label,Time_duration,Task_sym,strArray] =Eventread(pathname,filename);
  댓글 수: 4
ehsan rastgar
ehsan rastgar 2018년 9월 21일
for using this code you should have both files of *.edf and *.edf.event in same direction and same name/ and just select *.edf file/
Fernando.Xicot
Fernando.Xicot 2020년 12월 9일
Hello dear Ehsan, i have a problem with the eventread function.
Undefined function or variable 'Eventread'.
Error in event_read (line 7)
[Task_label,Time_duration,Task_sym,strArray] = Eventread(pathname,filename);
It seems that i vahe no function called eventread. Do you know why is this?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 EEG/MEG/ECoG에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by