How to load and display the ECG data file(.dat/.mat files) in MATLAB
1 次查看(过去 30 天)
显示 更早的评论
Hi..I am new to the concept of signal processing on ecg signals.I seek help for how to load and display the ecg data files (.dat or .mat files) into matlab. Hope anyone help me soon. Thank u in advance.
0 个评论
回答(1 个)
panakj tiwari
2020-7-30
for .dat file
fid = fopen('a01.dat');
data = fread(fid, [1 inf], '*int16', 'ieee-le');
fclose(fid);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Import and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!