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 commentaires

Walter Roberson
Walter Roberson le 24 Avr 2025
There are a number of File Exchange contributions designed to help extract data from images. See https://www.mathworks.com/matlabcentral/fileexchange/?q=tag%3Adigitize
Viswajit Talluru
Viswajit Talluru le 24 Avr 2025
Hello,
I tried them, since there are three data sets the code gets confused.
Jaxon
Jaxon le 6 Mai 2025
Please upload the figure, and I'll extract data into CSV.

Connectez-vous pour commenter.

 Réponse acceptée

Mathieu NOE
Mathieu NOE le 24 Avr 2025
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

Plus de réponses (0)

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by