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

6 visualizaciones (últimos 30 días)
SHRUTHI k
SHRUTHI k el 31 de Ag. de 2015
Respondida: panakj tiwari el 30 de Jul. de 2020
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.

Respuestas (1)

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

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by