필터 지우기
필터 지우기

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

조회 수: 1 (최근 30일)
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
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