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.
是否有任何等价物,gca但我想获取lineseries 对象的句柄(从返回的内容plot)。
gca
plot
我正在使用candlewhich 不返回句柄,但XData 除了复制代码和修改函数之外,还想修改它,是否有内置允许我这样做?
candle
XData
我的解决方案
fighandle = openfig('path of figure.fig','reuse') ax=findall(fighandle,'Type','line'); x=get(ax,'Xdata') y=get(ax,'YData')
如果有多个系列
xx=x(length(x),1); xx=xx{1};
您可能会在输出中找到该句柄(以及许多其他句柄)
get(gca, 'Children')