![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/291306/image.png)
a raw ECG text file from Opensignals programm.
3 次查看(过去 30 天)
显示 更早的评论
hello, i have a raw ECG text file from Opensignals programm. how can i plot this? any help? response will be appreciated.
0 个评论
采纳的回答
Ameer Hamza
2020-5-8
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))
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/291306/image.png)
1 个评论
Juan David Espinosa
2021-2-22
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 ?
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 ECG / EKG 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!