Data extraction for figure
2 ビュー (過去 30 日間)
古いコメントを表示
Hey,
Could someone please extract the data for Data 1, Data 2, and Data 3 from the figure? I would like to use the digitized data for my analysis. If you could provie data in .csv file that would be appricated.
3 件のコメント
採用された回答
Mathieu NOE
2025 年 4 月 24 日
with Grabit GRABIT - File Exchange - MATLAB Central it was fairly easy to scan seperatly your 3 curves - attached the results
of course it's a manual approach - if you need somehing more automatic yu may have to use an image processing approach
load('Data001.mat')
load('Data002.mat')
load('Data003.mat')
plot(Data001(:,1),Data001(:,2))
hold on
plot(Data002(:,1),Data002(:,2))
plot(Data003(:,1),Data003(:,2))
hold off
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で HDF5 についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
