Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用文本文件中的值和给定的数据绘制了一个图表。是否有任何函数可以转换该图形或从图形的 x 和 y 轴端值中提取数据。
如果您掌握了h情节,则可以恢复原始数据:
h
h = plot(x,y); x_recovered = get(h,'XData'); y_recovered = get(h,'YData');
如果您没有得到句柄,您可以在绘图上单击右键,然后编写命令
h = gco;
获取句柄h(这取代了上面的第一行)