获取 Matlab fig 中的errorbar

Matlab fig文件中的数据可以提取出来

h=get(gca,'children');
x=get(h,'xdata')
y=get(h,'ydata')
l=get(h,'ldata')
u=get(h,'udata')
%errorbar 一般情况 l=u

你可能感兴趣的:(获取 Matlab fig 中的errorbar)