假设保存的.fig格式的图片名称为abc。
使用open()函数打开图片。
以下为相应的程序(改程序能导出一个或多个子图的数据)
fig=open(‘abc.fig’);
lh = findall(fig, ‘type’, ‘line’)
xc = get(lh, ‘xdata’);
yc = get(lh, ‘ydata’);
以下程序只能导出当前图像的数据,若存在多个子图时,一般导出的为最后一个子图的数据
fig=open(‘abc.fig’);
lh = findall(gca, ‘type’, ‘line’)
xc = get(lh, ‘xdata’);
yc = get(lh, ‘ydata’);