Clear Filters
Clear Filters

a raw ECG text file from Opensignals programm.

6 views (last 30 days)
hello, i have a raw ECG text file from Opensignals programm. how can i plot this? any help? response will be appreciated.

Accepted Answer

Ameer Hamza
Ameer Hamza on 8 May 2020
Try this
% extract data
data = readmatrix('opensignals_98d391fd3f18_2020-05-07_16-43-17.txt', ...
'HeaderLines', 3, 'ExpectedNumVariables', 6);
% plot 6th column
plot(data(:,6))
  1 Comment
Juan David Espinosa
Juan David Espinosa on 22 Feb 2021
thx a lot, that help me a lot. but the graph is a little different if a compare with the OpenSignals graph, meybe i can plot only 100 samples ?

Sign in to comment.

More Answers (0)

Categories

Find more on Audio I/O and Waveform Generation in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!