Current figure handle ignoring my open figure

2 views (last 30 days)
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.

Accepted Answer

Alfonso Nieto-Castanon
Alfonso Nieto-Castanon on 2 Jun 2015
Edited: Alfonso Nieto-Castanon on 2 Jun 2015
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.

More Answers (0)

Categories

Find more on Graphics Object Identification in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!