フィルターのクリア

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 Center および File ExchangeEEG/MEG/ECoG についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by