How to load and display the ECG data file(.dat/.mat files) in MATLAB

3 ビュー (過去 30 日間)
SHRUTHI k
SHRUTHI k 2015 年 8 月 31 日
回答済み: panakj tiwari 2020 年 7 月 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.

回答 (1 件)

panakj tiwari
panakj tiwari 2020 年 7 月 30 日
for .dat file
fid = fopen('a01.dat');
data = fread(fid, [1 inf], '*int16', 'ieee-le');
fclose(fid);

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by