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

2 ビュー (過去 30 日間)
T K
T K 2022 年 9 月 28 日
コメント済み: Jan 2022 年 9 月 29 日
Please Help me, How to raise the quality of the attached figure after drawing it on Matlab
  2 件のコメント
Jan
Jan 2022 年 9 月 28 日
It depends, ob what you call "raised quality". Please mention, what the problem is.
T K
T K 2022 年 9 月 28 日
I want to raise the quality of this format from one of the tools features in 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 件のコメント
Star Strider
Star Strider 2022 年 9 月 29 日
What does that mean? What do you want it to look like?
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 Center および File ExchangeInteractive Control and Callbacks についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by