where are my data?

2 次查看(过去 30 天)
Paul Rogers
Paul Rogers 2020-1-14
I plot a figure by using a function from a package.
Now I'd like to know the x and y values once I plot the curve.
Where are they stored

采纳的回答

Star Strider
Star Strider 2020-1-14
Try this:
F = openfig('untitled.fig');
ax = gca;
lines = findobj(ax, 'Type','Line');
for k = 1:numel(lines)
x{k,:} = lines(k).XData;
y{k,:} = lines(k).YData;
end
The x- and y-data for each line are in their appropriate cell arrays.
  4 个评论
Paul Rogers
Paul Rogers 2020-1-14
for k = 1:numel(lines)
figure(4)
plot(FlowVector,y{k,:})
grid on
hold on
end
here's is the solution.
Man, thank you a lot, you really helped me.
I couldn't figured out without your help.
Star Strider
Star Strider 2020-1-14
As always, my pleasure!
That’s what I’m here for!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

产品


版本

R2014b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by