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

18 views (last 30 days)
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.

Accepted Answer

Abdul Hai
Abdul Hai on 8 Oct 2016
Edited: Walter Roberson on 8 Oct 2016
load('300m.mat');
a=(val(1,:));
figure;
plot(a);

More Answers (2)

Walter Roberson
Walter Roberson on 8 Oct 2016
Edited: Walter Roberson on 20 Dec 2016

Richard Dumenu
Richard Dumenu on 28 Mar 2021
his solution you have provided is outmoded

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!