Extracting data from a graph image using 'ginput'
Mostra commenti meno recenti
Hello,
I want to extract data using 'ginput' from an attached file.

1 Commento
Changho LEE
il 3 Lug 2020
Risposta accettata
Più risposte (1)
darova
il 2 Lug 2020
here is an example
x = rand(100,1); % generate some data
y = rand(100,1);
plot(x,y,'.r')
p = ginput(1);
d = pdist2([x y],p); % find combination of distances
[~,ix] = min(d); % index of closest poont
line(x(ix),y(ix),'linestyle','none','marker','o')
text(x(ix), y(ix),sprintf('%0.1f %0.1f',x(ix), y(ix)))
1 Commento
Changho LEE
il 3 Lug 2020
Categorie
Scopri di più su Data Exploration in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
