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 CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by