![](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!