MATLAB: Extract the data from graph

guiimagematrix

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

Best Answer

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