Read and process EMG data (*.emt)?
23 次查看(过去 30 天)
显示 更早的评论
I'm interested in opening and processing EMG signals acquired and stored in a *.emt data format - essentially a txt with the signal values saved in open text. Before building up a custom function using fread or something like that to parse the information from the text I'd like to know if there is any tool ready to be used (i think it is a standard file format for EMG).
Thanks for the help!
Francesco
3 个评论
Star Strider
2023-2-21
My pleasure!
One option is to use Python to import it, then save it as something MATLAB can read without problems, then use MATLAB for the analysis.
采纳的回答
Aman
2023-3-15
Hi,
I understand that you want to analyse the EMG signal data which is stored in .emt file and you want to know whether there is a standard method provided by MATLAB which you can use in your implementation.
As of now, there is no inbuilt method that MATLAB provides to read .emt files. As the .emt is an unsupported file format so to read that you need to write custom logic. You can use "fopen” to open the file and then you can use “fread” to read the content of the file based on the format to parse the content, for more information you can refer this link.
Hope it helps!
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!