can I obtain the values of a plot in tabular form
Show older comments
I need the coordinate values of each and every point which are combined together to form a graph in a Tabular form, can I?
4 Comments
KSSV
on 18 Mar 2018
Do you have data points in hand and then you plotted? Or you got the plot in hand?
sudheer yallapragada
on 19 Mar 2018
KSSV
on 19 Mar 2018
You have executed the code....so you data in hand right....
sudheer yallapragada
on 19 Mar 2018
Answers (1)
Von Duesenberg
on 19 Mar 2018
It depends on the kind of plot you have, but the following example should put you on the right track:
plot(1:10,[1 2 1 2 3 2 1 2 3 2], 'ro')
ax = get(gca, 'Children');
xData = ax.XData;
yData = ax.YData;
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!