Clear Filters
Clear Filters

How and why Matlab defines maximal values for gcf's position (width and height)? It looks like these values are screen resolution dependent ...

10 views (last 30 days)
If I run subroutine which outputs a figure on 12,5" laptop (screen resolution 1366x768) with the following gcf settings:
set(gcf, 'Units','pixels ','Position',[0 0 1500 1500]);
then Matlab automatically cuts the figure position (width and height) to [0 0 1366 698].
This causes problems already on the screen and then also when gcf is exported to file (saveas(gcf,filename,'pdf');). As the subroutine is being used on different computers, the generated output figure is not identical. In case of 12,5" laptop, the figure is not recognizable ...
What shall I do to avoid this problem?
Thanks, Janez
  2 Comments
Albert Yam
Albert Yam on 25 Jul 2012
Does it have to do with the figure that is being opened/created? If I run
figure;plot(1:10)
set(gcf, 'Units','pixels','Position',[0 0 3000 3000]);
The figure window is bigger than my screen, but it doesn't get chopped off. (I have to right click the start bar > move to get it to show.)
Janez
Janez on 2 Aug 2012
I tried on different platforms (XP, Win7), different screen resolutions and different Matlab releases. The GCF is always chopped off.

Sign in to comment.

Answers (3)

Daniel Shub
Daniel Shub on 25 Jul 2012
Instead of using units of pixels, use normalized units. This way you do not have to worry about making figures larger than the screen size.
  2 Comments
Janez
Janez on 2 Aug 2012
Good idea, but doesn't solve my problem.
First: My GCF contains several TEXT definitions. The problem is that the text appearing on GCF has fixed size and the text is overlapping when low resolution is applied.
Second: The output to file (in my case the output is A4 pdf file) is still not independend of screen resolution. Every user gets different output.
Daniel Shub
Daniel Shub on 3 Aug 2012
Why don't you edit your question to include some example code that demonstrates the problem and lists all of the requirements.

Sign in to comment.


Leah
Leah on 25 Jul 2012
figure;plot(1:10)
set(gcf, 'Units','normalized','Position',[0 0 1 1]); %fullscreen
position is a percentage of your screen, instead of pixels
  1 Comment
Image Analyst
Image Analyst on 3 Aug 2012
I think he knows that. His problem is that when he goes to save an file, it saves it as the current max screen resolution, and then when that image is recalled, it looks weird on other computers with different resolution than his.

Sign in to comment.


Image Analyst
Image Analyst on 3 Aug 2012
It lets you specify an exact resolution for your output image. I haven't tried to do this, but see what happens if you specify a resolution larger than your screen. See if it gets saved out with that larger resolution, or if it limits it to your screen's resolution. Let us know how it works.

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!