a raw ECG text file from Opensignals programm.
12 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Nabil Yassin
am 7 Mai 2020
Kommentiert: Juan David Espinosa
am 22 Feb. 2021
hello, i have a raw ECG text file from Opensignals programm. how can i plot this? any help? response will be appreciated.
0 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 8 Mai 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 Kommentar
Juan David Espinosa
am 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 ?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu ECG / EKG finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!