필터 지우기
필터 지우기

Using suptitle overrides ('visible', 'off') figure property

조회 수: 3 (최근 30일)
oxy
oxy 2014년 3월 21일
댓글: Walter Roberson 2017년 9월 5일
Hi all,
this problem has been reported elsewhere, but no solution yet. I m using this version of suptitle.m:
Here a sample code. If you are working in a remote computer without X forward or any X installed at all, you d like to avoid figures poping up like that.
fig1 = figure(1, 'visible', 'off')
subplot(2,1,1)
plot(1:3,1:3)
subplot(2,1,2)
plot(1:5,1:5)
suptitle('This is a bigger title')
Questions: Is there a fix? Is there a newer version of suptitle?
thx...

채택된 답변

per isakson
per isakson 2014년 3월 22일
편집: per isakson 2014년 3월 22일
Try to comment out the line axes(haold); at the end of suptitle
....
% axes(haold);
if nargout,
hout=ht;
end
end
That helps on R2013a, Win7.
Doc says:
axes(h) makes existing axes h the current axes and brings the figure
containing it into focus.
I don't know if it is possible to make existing axes h the current without affecting the figure.
  댓글 수: 2
Sergio Vidal
Sergio Vidal 2017년 9월 5일
This issue is still not solved in 2017a version. This solution may not be fancy but solves the problem. Thanks.
Walter Roberson
Walter Roberson 2017년 9월 5일
You can set the figure CurrentAxes property to make an axes current without bringing it into focus.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Labels and Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by