Data extraction for figure

조회 수: 2 (최근 30일)
Viswajit Talluru
Viswajit Talluru 2025년 4월 24일
댓글: Jaxon 2025년 5월 6일
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
Viswajit Talluru
Viswajit Talluru 2025년 4월 24일
Hello,
I tried them, since there are three data sets the code gets confused.
Jaxon
Jaxon 2025년 5월 6일
Please upload the figure, and I'll extract data into CSV.

댓글을 달려면 로그인하십시오.

채택된 답변

Mathieu NOE
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개)

카테고리

Help CenterFile Exchange에서 HDF5에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by