从具有有限轴的 Matlab 图中检索数据
如何从具有有限轴的 Matlab 绘图窗口检索数据?代码:
plot(ua,va,'rO');
axis([-320 320 -240 240]); box on;
lh=findall(gcf,'type','line');
xp=get(lh,'xdata');
yp=get(lh,'ydata');
如果绘图窗口上没有数据,xp 和 yp 将从绘图函数中提供数据(本身没有窗口)。
How can I retrieve data from Matlab plot window with limited axis? Code:
plot(ua,va,'rO');
axis([-320 320 -240 240]); box on;
lh=findall(gcf,'type','line');
xp=get(lh,'xdata');
yp=get(lh,'ydata');
If there is no data on the plot window, xp and yp will give me data from the plot function (no window itself).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设 xp 和 yp 是所有点的 x 和 y 坐标。您可以像这样删除
[-320 320 -240 240]
之外的点:Suppose
xp
andyp
are the x and y coordinates of all of the points. You can remove the points outside of[-320 320 -240 240]
like this: