Please Help me, How to raise the quality of the attached figure after drawing it on Matlab

2 次查看(过去 30 天)
Please Help me, How to raise the quality of the attached figure after drawing it on Matlab

回答(1 个)

Star Strider
Star Strider 2022-9-28
What do you want to do with it?
F = open(websave('T','https://www.mathworks.com/matlabcentral/answers/uploaded_files/1138680/T.fig'));
getF = get(F);
Kids = F.Children;
Ax = F.Children(2);
Lines = findobj(Ax, 'Type','Line');
figure
hold on
for k = 1:numel(Lines)
plot(Lines(k).XData, Lines(k).YData, 'DisplayName',Lines(k).DisplayName)
end
hold off
grid
legend('Location','best')
.
  3 个评论
Jan
Jan 2022-9-29
It is not clear to me what "raise quality" of which "format" means. What are the "tools features" of Matlab?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by