Current figure handle ignoring my open figure
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi,
I am using gcf
set(gcf, 'PaperPositionMode', 'manual');
to set figure properties so that I can print it as a .ps file.
However, upon executing, the statement opens a new figure and applies the changes to this one. Hence, my .ps file is empty. Any clue to what could be happening? The close all statement also does not work for my figure, I have to close it manually.
What's weird is that it was working the last time I worked on my project. When I opened it again today, it wasn't. I tried to debug it, but with no success. When I rewrote exactly what I had, it worked again. And now, it has stopped working.
댓글 수: 0
채택된 답변
Alfonso Nieto-Castanon
2015년 6월 2일
편집: Alfonso Nieto-Castanon
2015년 6월 2일
most likely reason is that your figure has its HandleVisibility property set to 'off' or 'callback' (so its handle is partially hidden). Use findall to find hidden handles, and/or use close all hidden to close all figures (included ones with hidden handles), or close all hidden force if your figure has also altered its CloseRequestFcn property to avoid closure.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Graphics Object Identification에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!