extract the data from graph

in this figure i have the curve and i want to now x(piont) and y(piont)

 Accepted Answer

l=findobj(gca,'Type','Line');
x=l.XData;
y=l.YData;

More Answers (0)

Categories

Asked:

on 19 Jul 2020

Answered:

on 19 Jul 2020

Community Treasure Hunt

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

Start Hunting!